scripts trouvés
exemple
installation
dans la partie body
<SPAN class=quakestyle id=contact style="LEFT: 10px; TOP: 10px"> <A href="#" onmouseover="quakeme('contact','10','10')"> <IMG border=0 src="contact.jpg"></A> </SPAN>
dans la partie head
<SCRIPT> // © Peter Gehrig and Urs Dudli at www.24fun.ch/ // L'amplitude de la secousse var quakestrength=5 // La durée de la secousse var max_quake=12 //////////////////////////////////////////////// var thisspan var i_quake=0 var pause=5 var x_pos,y_pos var occupied=0 function quakeme(spanname,x,y) { if (occupied==0) { i_quake=0 x_pos=x y_pos=y if (document.all) { thisspan=eval("document.all."+spanname+".style") } if (document.layers) { thisspan=eval("document."+spanname) } quakeme2() } } function quakeme2() { quakestrength=quakestrength*(-1) if (document.all&&i_quake<max_quake) { occupied=1 thisspan.posTop+=quakestrength thisspan.posLeft+=quakestrength var timer=setTimeout("quakeme2()",pause) i_quake++ } else if (document.layers&&i_quake<max_quake) { occupied=1 thisspan.top+=quakestrength thisspan.left+=quakestrength var timer=setTimeout("quakeme2()",pause) i_quake++ } else { clearTimeout(timer) thisspan.posTop=y_pos thisspan.posLeft=x_pos occupied=0 } } </SCRIPT> <STYLE> .quakestyle {POSITION: absolute} </STYLE>
retour page image
passe le curseur sur l'image