Una imagen que tiembla
Para obtener
un efecto de temblor con una imagen, añada el siguiente script a su página entre las etiquetas
<head> y
</head>:
<SCRIPT>
var quakestrength=5
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>
Se puede personalizar este código especificando:
- El número de movimientos que produce el efecto de temblor: var quakestrength=5
- La amplitud de la vibración: var max_quake=12
Añada esta parte de código al cuerpo de su página, especificando el lugar en el que desea colocar la imagen (
LEFT y
TOP):
<SPAN class=quakestyle id=contact style="LEFT: 10px; TOP: 10px">
<A href="#" onmouseover="quakeme('contact','10','10')">
<IMG border=0 src="your_image.jpg"></A>
</SPAN>