Skip to content

Instantly share code, notes, and snippets.

@zincplusplus
Created July 18, 2012 13:40
Show Gist options
  • Save zincplusplus/3136271 to your computer and use it in GitHub Desktop.
Save zincplusplus/3136271 to your computer and use it in GitHub Desktop.
Star to circle
/**
* Star to circle
*/
@keyframes asd {
0% { mask-position: 0 0; }
100% { mask-position: 100% 0; }
}
.star-to-circle {
animation: asd 5s linear infinite;
background-color: red;
height: 50px;
mask-image: url(https://photos-4.dropbox.com/psi/xl/Pze_b8zLEjnMH86E0oxy2e9uQb30MOnB8pHG1NPSyw4/3269118/1342706400/0403573/star-to-circle.png);
width: 50px;
}
<div class="star-to-circle"></div>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment