jquery animate自定义动画小程序

发布时间:2020-08-01编辑:脚本学堂
有关jquery animate自定义动画的例子,jquery animate动画特效的小程序,animate方法实现的jquery 动画效果,需要的朋友参考下。

代码:
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery animate自定义动画 - www.jb200.com</title>
<link rel="stylesheet" href="style.css" type="text/css">  
<style type="text/css"> 
.center {
width:960px;                                                                   
margin:0 auto;
border:1px solid #333;  
background-color:#ccc;  
}
</style>
<script src="jquery-1.4.4.min.js" language="javascript" type="text/javascript"></script>
<script type="text/javascript">
function load()
{
 // alert("test");
}
function div_con()
{
//$(".center").hide();
$(".center").animate({
width:"50%"
},1000
);
}
</script>
</head>
<body onload="load()">
<div class="center" onclick="div_con()">test</div>
</body>
</html>