Created
June 26, 2020 11:57
-
-
Save danman01/7e171a7c7cbc795925c6464a0145a0f6 to your computer and use it in GitHub Desktop.
reddit static 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
.some-static-class:before { | |
content: ""; | |
display: block; | |
position: absolute; | |
top: -30px; | |
right: -30px; | |
bottom: -30px; | |
left: -30px; | |
animation: some-static-class .2s infinite; | |
animation-name: some-static-class; | |
animation-duration: 0.2s; | |
animation-timing-function: ease; | |
animation-delay: 0s; | |
animation-iteration-count: infinite; | |
animation-direction: normal; | |
animation-fill-mode: none; | |
animation-play-state: running; | |
background-color: #fff; | |
background-image: url(https://www.redditstatic.com/desktop2x/img/rpan-static.png); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment