Hey Raine! I was just wondering if it was at all possible to know how to make your links on bvrnie do what they do? Like the spinning and that? It's so cool!!
heyo anon ! well, it’s actually really easy, believe it or not, and i think there’s another tutorial laying around, but i’ve got’cha ! so here we go. TUTORIAL FOR SPINNING LINKS.
usually when you have links, esp. navigation links, you have the LINK code. this is where a lot of people mess up, you DON’T TOUCH THE LINK CODE. you find the code link: hover. mine, for example, looks like this:
#links ( or whatever your link’s name is nbd ) a:hover { color:#71527a; -moz-transition-duration:.5s; -webkit-transition-duration:.5s; -o-transition-duration:.5s; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg);
}
this means when the mouse HOVERS over the link, it’ll spin.
this coding is how fast you want it to be. I DO NOT SUGGEST SLOWER THAN .7, but if you wanna make it that slow, go for it. but that controls how FAST the rotation happens.
and obviously, the rotation is how much you want it to rotate.
i suggest 360 strictly because it’s weird any other way. but once you install that code, your links should rotate. but DON’T INSTALL IT ON A { because that is normal links that it will make all your links rotate, but if you wanna do that, hey man, i ain’t stoppin’ you.
EDIT: keep all three rotations in there, it’s so that the links will rotate regardless of browser.