<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Jquery特效 - animation</title>
<script src="jquery.js"></script>
<style>
div { width:300px; height:80px; background:#CCCCCC; margin:20px; text-align:center;}
</style>
</head>
<body>
<div id="test1">
点击运行动画
<br/>
animate(
{width:"400px",opacity:0.3,height:"400px"},3000
)
</div>
<script>
$("#test1").on("click",function(){
$(this).animate({width:"400px",opacity:0.3,height:"400px"},3000,function(){alert("callback")});
});
</script>
</body>
</html>
Javascript高级——7.属性animate动画
最新推荐文章于 2024-07-11 14:17:20 发布