Last active
April 24, 2020 21:24
-
-
Save opejovic/0328ec04bae4cb4dedf00faaa81a16ca to your computer and use it in GitHub Desktop.
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
.animated-placeholder-two { | |
background: linear-gradient(90deg, #eef2f6, #eef4fa, #ffffff, #eef4fa, #eef2f6); | |
background-size: 600% 600%; | |
-webkit-animation: left-to-right 2.5s ease-out infinite; | |
-moz-animation: left-to-right 2.5s ease-out infinite; | |
animation: left-to-right 2.5s ease-out infinite; | |
} | |
@-webkit-keyframes left-to-right { | |
0% { background-position: 0% 50%; } | |
50% { background-position: 100% 50%; } | |
100% { background-position: 0% 50%; } | |
} | |
@-moz-keyframes left-to-right { | |
0% { background-position: 0% 50%; } | |
50% { background-position: 100% 50%; } | |
100% { background-position: 0% 50%; } | |
} | |
@keyframes left-to-right { | |
0% { background-position: 0% 50%; } | |
50% { background-position: 100% 50%; } | |
100% { background-position: 0% 50%; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment