Replies

Dec 20, 2013 12 years ago
Riley
has seen too much
User Avatar
Emalie

Is there a code for pet profiles to have fade-in links, like what 's links do on her User Profile?

Any and all help is very appreciated. C: Please ping me!

[ToT=Riley]

Dec 20, 2013 12 years ago
Adventure Captain
sonata
User Avatar

If you just mean how the link 'disappear' when hovered then that's pretty simple.

coding for links

For the fade you'd be looking at the :hover state and you could just set the color to either the same as the background or (what is probably better if you have links on different background colors) set it to transparent.

Art by
[tot=sonata]

Dec 20, 2013 12 years ago
Riley
has seen too much
User Avatar
Emalie

;;

No, I mean FADE, not disappear. I want it to slowly fade into another color.

[ToT=Riley]

Dec 20, 2013 12 years ago
Adventure Captain
sonata
User Avatar

Well you'll still be looking at the hover state and changing the color. For the fading effect you'll want to add transitions. So the code would look something like this:

a:link, a:visited, a:active {color:; transition: 2s; -webkit-transition: 2s;} a:hover {color:;}

[edit]

Ick, sorry if I pinged a group. >.<

Art by
[tot=sonata]

Dec 20, 2013 12 years ago
Riley
has seen too much
User Avatar
Emalie

;;

Let me plug it in and I'll see if it works. c:

[ToT=Riley]

Please log in to reply to this topic.