Skip to content

Instantly share code, notes, and snippets.

@internoma
Created April 25, 2015 09:51
Show Gist options
  • Save internoma/e256ab808a6cccf1cadb to your computer and use it in GitHub Desktop.
Save internoma/e256ab808a6cccf1cadb to your computer and use it in GitHub Desktop.
r4bkganimation
background: linear-gradient(214deg, #882135, #ffffff);
background-size: 400% 400%;
-webkit-animation: r4bkganimation 30s ease infinite;
-moz-animation: r4bkganimation 30s ease infinite;
-o-animation: r4bkganimation 30s ease infinite;
animation: r4bkganimation 30s ease infinite;
@-webkit-keyframes r4bkganimation {
0%{background-position:81% 0%}
50%{background-position:20% 100%}
100%{background-position:81% 0%}
}
@-moz-keyframes r4bkganimation {
0%{background-position:81% 0%}
50%{background-position:20% 100%}
100%{background-position:81% 0%}
}
@-o-keyframes r4bkganimation {
0%{background-position:81% 0%}
50%{background-position:20% 100%}
100%{background-position:81% 0%}
}
@keyframes r4bkganimation {
0%{background-position:81% 0%}
50%{background-position:20% 100%}
100%{background-position:81% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment