<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery动画特效</title>
<style type="text/css">
div{
background-color: #ff592e;
border-radius:6px;
border:2px solid #999999;
width:200px;
height:200px;
line-height:200px;
position:absolute;
text-align:center;
color: #22608b;
font-weight:bold;
margin-top:30px;
</style>
</head>
<body>
<div></div>
<input id="left" type="button" value="左移"/>
<input id="right" type="button" value="右移"/>
<script type="text/javascript">
$(function(){
$("#left").bind("click",function(){
$("div").animate({
left:"-=50px"
},3000,function(){
$("div").html("左移执行完成")
})
})
$("#right").bind("click",function(){
$("div").animate({
right:"+=50px"
},3000,function(){
$("div").html("右移执行完成")
})
})
})
</script>
</body>
</html>