— 1 Comment— 2 Kudos
How to make the spacehey logo spin!
Category: Web, HTML, Tech
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! @keyframes spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } } .logo { animation-name: spin; animation-duration: 5000ms; animation-iteration-count: infinite; animation-timin » Continue Reading