Created
July 3, 2018 12:32
-
-
Save mumairofficial/cfbc86a97bb22841f59f90b93433b0f2 to your computer and use it in GitHub Desktop.
image or text loading linear animation
This file contains hidden or 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
| .shot-loading.shot { | |
| background: #E7E7E7; | |
| width: 100%; | |
| padding-top: 77%; | |
| border-radius: 2px; | |
| -moz-animation: 1s linear infinite; | |
| -webkit-animation: 1s linear infinite; | |
| animation: loading-glow 1s linear infinite; | |
| -webkit-animation-delay: 0.6s; | |
| animation-delay: 0.6s; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment