<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
<title>jQuery动画特效</title>
<style type="text/css">
div{
position:absolute;
width:80px;
height:80px;
border-style:solid;
color:red;
margin:100px;
}
</style>
</head>
<body>
<input id="btnLeft" type="button" value="左移" />
<input id="btnRight" type="button" value="右移" />
<div></div>
<script>
$(function(){
$("#btnLeft").bind("click",function(){
$("div").animate({
right:"+=50px"
},3000);
});
$("#btnRight").bind("click",function(){
$("div").animate({
left:"+=50px"
},3000);
});
});
</script>
</body>
</html>