Voltage's profile picture

Published by

published

Category: Web, HTML, Tech

How to make the spacehey logo spin!

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!


2 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

Voltage

Voltage's profile picture
Pinned

btw i learned this myself, it might already be there. I just wanna share what i did.


Report Comment