Skip to content

Instantly share code, notes, and snippets.

@ig0r74
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save ig0r74/f981cb04eef7c96e1b46 to your computer and use it in GitHub Desktop.

Select an option

Save ig0r74/f981cb04eef7c96e1b46 to your computer and use it in GitHub Desktop.
Анимированный градиентный фон
body {
background: linear-gradient(231deg, #00efb1, #eb70d8);
background-size: 400% 400%;
-webkit-animation: animbgr 30s ease infinite;
-moz-animation: animbgr 30s ease infinite;
-o-animation: animbgr 30s ease infinite;
animation: animbgr 30s ease infinite;
}
@-webkit-keyframes animbgr {
0%{background-position:97% 0%}
50%{background-position:4% 100%}
100%{background-position:97% 0%}
}
@-moz-keyframes animbgr {
0%{background-position:97% 0%}
50%{background-position:4% 100%}
100%{background-position:97% 0%}
}
@-o-keyframes animbgr {
0%{background-position:97% 0%}
50%{background-position:4% 100%}
100%{background-position:97% 0%}
}
@keyframes animbgr {
0%{background-position:97% 0%}
50%{background-position:4% 100%}
100%{background-position:97% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment