This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -v https://github.com/mrugrajsinh | |
* Trying 192.30.252.130... | |
* Connected to github.com (192.30.252.130) port 443 (#0) | |
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 | |
* Server certificate: github.com | |
* Server certificate: DigiCert SHA2 Extended Validation Server CA | |
* Server certificate: DigiCert High Assurance EV Root CA | |
> GET /mrugrajsinh HTTP/1.1 | |
> Host: github.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.animatedDiv { | |
width: 820px; | |
height: 312px; | |
background-image: url("https://cf.dropboxstatic.com/static/images/index/animation-strips/hero-intro-bg-vflR5rUow.jpg"); | |
-webkit-animation: play 2s steps(48) infinite; | |
-moz-animation: play 2s steps(48) infinite; | |
-ms-animation: play 2s steps(48) infinite; | |
-o-animation: play 2s steps(48) infinite; | |
animation: play 2s steps(48) infinite; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title> | |
Sprite-Sheet Animation | |
</title> | |
<link rel=”stylesheet” type=”text/css” href=”main.css”> | |
</head> | |
<body> | |
<div class=”animatedDiv”></div> | |
</body> |