Skip to content

Instantly share code, notes, and snippets.

@csssecrets
Last active October 10, 2021 15:26
Show Gist options
  • Save csssecrets/87d80a51a5294ec07aea to your computer and use it in GitHub Desktop.
Save csssecrets/87d80a51a5294ec07aea to your computer and use it in GitHub Desktop.
Animation along a circular path - Solution 1
/**
* Animation along a circular path - Solution 1
*/
@keyframes spin {
to { transform: rotate(1turn); }
}
.avatar {
animation: spin 3s infinite linear;
transform-origin: 50% 150px;
}
.avatar > img {
animation: inherit;
animation-direction: reverse;
}
/* Anything below this is just styling */
.avatar {
width: 50px;
margin: 0 auto;
border-radius: 50%;
overflow: hidden;
}
.avatar > img {
display: block;
width: inherit;
}
.path {
width: 300px; height: 300px;
padding: 20px;
border-radius: 50%;
background: #fb3;
}
<div class="path">
<div class="avatar">
<img src="http://lea.verou.me/book/adamcatlace.jpg" />
</div>
</div>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment