View Full Version : MouseOver Effect


RoseCrystal
08-22-2003, 08:06 PM
Need help. Lol. I think this is what forum is for. Well i'm wondering how do I get like sa if my orginal. How do i get when i mouseover it. the image blur. Like www.weg.color.nu

Merike
09-21-2003, 12:07 PM
its javascript, try to change the source some way, maybe that does it...but I really don't know much about things like that...

MaGiCSuN
09-21-2003, 01:41 PM
put this between your <head> and </head>

<script>
function blu(a,b){
a.filters.blur.strength=b
}
</script>

then put the following between you r<body> and </body> somewhere INSIDE the <img> tag:

style="filter:blur(strength=0)" onMouseover="blu(this,10)" onMouseout="blu(this,0)"

so your code should look like this:

<img src="image.gif" style="filter:blur(strength=0)" onMouseover="blu(this,10)" onMouseout="blu(this,0)">

Love,
Mirna

MiSsKaOs
09-21-2003, 07:11 PM
ok, on that same site, the person as a scrollbar in the area where all the text is. How can I get that like that, without a box around it?

MaGiCSuN
09-21-2003, 07:29 PM
that person has used an iframe on that spot.

you can get the same effect with a div, the only thing with a div is that you can't target links to it like you can with an iframe.

<div style="overflow: auto; height: #px; width: #px;">
your text here</div>

Love,
Mirna