If you want to make the Spacehey logo to spin, just copy this layout and put it on your about me or anywhere you want!
<style>
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
.logo {
animation-name: spin;
animation-duration: 5000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
</style>
If this works for you, give me a kudos!
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
Voltage
btw i learned this myself, it might already be there. I just wanna share what i did.