Skip to content

Instantly share code, notes, and snippets.

@danman01
Created June 26, 2020 11:57
Show Gist options
  • Save danman01/7e171a7c7cbc795925c6464a0145a0f6 to your computer and use it in GitHub Desktop.
Save danman01/7e171a7c7cbc795925c6464a0145a0f6 to your computer and use it in GitHub Desktop.
reddit static animation
.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