PDA

View Full Version : text rollover effect


newbieiam
08-13-2002, 08:18 AM
hi,

i am looking for a script for when you move your mouse over a linked word, that the word has a bkground, or a strikethru. Do you know a website with some of these scripts? Thanks a bundle. Cheers!

joh6nn
08-13-2002, 08:56 AM
this can be done with style sheets:

<style>
a.mouse:hover {
background: url("somegif.gif") #FF00FF;
text-decoration: strike;
}
</style>

<a href="somepage.htm" class="mouse">click click</a>

that "text-decoration" bit may not be right, you'll have to check.

duniyadnd
08-13-2002, 10:29 AM
Correct but one part, good thing you said to check it :thumbsup:

<style>
a.mouse:hover {
background: url("somegif.gif") #FF00FF;
text-decoration: line-through ;
}
</style>

Duniyadnd