Created
July 18, 2012 13:40
Star to circle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="star-to-circle"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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