Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/cdbf47bc4c406925c9776e35e5a7c566 to your computer and use it in GitHub Desktop.
Save Padilo300/cdbf47bc4c406925c9776e35e5a7c566 to your computer and use it in GitHub Desktop.
анимированные шестерни css
body {
background: #000;
}
i {
display: block;
position: absolute;
width: 30px;
height: 30px;
top: 30px;
left: 30px;
background: url(http://i.imgur.com/lOBxb.png);
-webkit-animation: barrelRoll 2s infinite linear;
-webkit-animation-play-state: paused;
}
i:last-of-type {
top: 22px;
left: 56px;
-webkit-animation-name: invertBarrelRoll;
}
div:hover > i {
-webkit-animation-play-state: running;
}
@-webkit-keyframes barrelRoll {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes invertBarrelRoll {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(-360deg); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment