|
<html>
<head>
http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js</a>">
<script type="text/javascript">
$(document).ready(function(){
$("#start").click(function(){
$("#box").animate({height:300},"slow");
$("#box").animate({width:300},"slow");
$("#box").animate({height:100},"slow");
$("#box").animate({width:100},"slow");
$("#box").fadeOut();
$j("#box").fadeIn();
});
});
</script>
</head>
<body>
<p><a href="#" id="start">Esegui animazione</a></p>
<div id="box"
style="background:#98bf21;height:100px;width:100px;position:relative">
www.zambros.it
</div>
</body>
</html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){ $("#start").click(function(){ $("#box").animate({height:300},"slow"); $("#box").animate({width:300},"slow"); $("#box").animate({height:100},"slow"); $("#box").animate({width:100},"slow"); $("#box").fadeOut(); $j("#box").fadeIn(); });
});
</script>
</head> <body> <p><a href="#" id="start">Esegui animazione</a></p> <div id="box"style="background:#98bf21;height:100px;width:100px;position:relative">
www.zambros.it</div> </body> </html>
|