13/01/2013, 16:21
|
| | Fecha de Ingreso: enero-2013
Mensajes: 3
Antigüedad: 11 años, 10 meses Puntos: 0 | |
problema hover - jquery Hola soy nuevo en el foro, queria ver si me pueden ayudar, el problema que al pasar el mouse varias veces seguidas , al salir me sigue repitiendo la animacion , como hago que respete si estoy over u out, al hacer out corte y no repita,
y por otro lado como hago para al hacer over que la animacion expanda o se agrande en proporcion a los 4 lados, no hacia la izquierda.
les dejo el html gracias por su ayuda.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
<script type="text/javascript" src="../js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
var x=$(document);
x.ready(inicializar);
function inicializar(){
var x=$("#objetivo");
x.hover(entraRaton,saleRaton);
}
function entraRaton(){
$(this).animate({width:300,height:300},500);
}
function saleRaton(){
$(this).animate({width:250,height:250},500);
}
</script>
</head>
<body>
<div id="objetivo" style="background:#0C6; width:250px; height:250px; margin-top:100px; margin-left:100px">yo soy un div</div>
</body>
</html>
Última edición por gmur05; 13/01/2013 a las 16:42 |