bruderherz
Gesperrt
hi leude,
wisst ihr wie ich so was machen kann:
es gibt zwei bilder auf schwarzem hintergrund, wenn man über ein bild fährt dann erscheinen darunter links und wenn man das bild verlässt, bleiben die natürlich! genau dasselbe beim zweiten bild! und wenn man darüberfährt ändert sich nicht nur die farbe, nein, es soll ganz langsam immer heller werden!
kann ich dieses script benutzen und es ein bisschen ändern?
danke schon im voraus!
wisst ihr wie ich so was machen kann:
es gibt zwei bilder auf schwarzem hintergrund, wenn man über ein bild fährt dann erscheinen darunter links und wenn man das bild verlässt, bleiben die natürlich! genau dasselbe beim zweiten bild! und wenn man darüberfährt ändert sich nicht nur die farbe, nein, es soll ganz langsam immer heller werden!
kann ich dieses script benutzen und es ein bisschen ändern?
<html>
<head>
<title>He Thomas</title>
<script language="JavaScript">
hoverObjects = new Object();
hoverTimers = new Object();
function hover(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){
setTimeout("hover("+object+","+destOp+","+rate+","+delta+")",0);
return;
}
clearTimeout(hoverTimers[object.sourceIndex]);
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
hoverObjects[object.sourceIndex]=object;
hoverTimers[object.sourceIndex]=setTimeout("hover(hoverObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
}
}
</script>
</head>
<body bgcolor=black>
<table border=0 cellspacing=3>
<tr>
<td>
<a href=#><img src=link1.jpg border=0 alt="Anime Evolution" id="AE" style="filter:alpha(opacity=50)" onmouseover="hover(AE,100,30,5)" onmouseout="hover(AE,50,50,5)"></a>
</td>
<td>
<a href=#><img src=link2.gif border=0 alt="Anime-N" id="AN" style="filter:alpha(opacity=50)" onmouseover="hover(AN,100,30,5)" onmouseout="hover(AN,50,50,5)"></a>
</td>
<td>
<a href=#><img src=link3.jpg border=0 alt="MC" id="MC" style="filter:alpha(opacity=50)" onmouseover="hover(MC,100,30,5)" onmouseout="hover(MC,50,50,5)"></a>
</td>
</tr>
<tr>
<td>
<a href=#><img src=link4.gif border=0 alt="8/2" id="8/2" style="filter:alpha(opacity=50)" onmouseover="hover(8/2,100,30,5)" onmouseout="hover(8/2,50,50,5)"></a>
</td>
<td>
<a href=#><img src=link5.gif border=0 alt="Chrischtian" id="CH" style="filter:alpha(opacity=50)" onmouseover="hover(CH,100,30,5)" onmouseout="hover(CH,50,50,5)"></a>
</td>
<td>
<a href=#><img src=link6.gif border=0 alt="kannnixlesen" id="ka" style="filter:alpha(opacity=50)" onmouseover="hover(ka,100,30,5)" onmouseout="hover(ka,50,50,5)"></a>
</td>
</tr>
<tr>
<td>
<a href=#><img src=link7.jpg border=0 alt="Narutofever" id="nf" style="filter:alpha(opacity=50)" onmouseover="hover(nf,100,30,5)" onmouseout="hover(nf,50,50,5)"></a>
</td>
<td>
<a href=#><img src=link8.gif border=0 alt="Myworld" id="mw" style="filter:alpha(opacity=50)" onmouseover="hover(mw,100,30,5)" onmouseout="hover(mw,50,50,5)"></a>
</td>
<td>
<a href=#><img src=link9.jpg border=0 alt="ssj-trunks" id="st" style="filter:alpha(opacity=50)" onmouseover="hover(st,100,30,5)" onmouseout="hover(st,50,50,5)"></a>
</td>
</tr>
</table>
danke schon im voraus!