<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.box{width: 100px;height:100px;background:pink;position: absolute;}
</style>
<script type="text/javascript" src="jq.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.you').click(function(){
$('.box').animate({
left:'+500px',
fontSize:'20px',
},
3000)
})
$('.sot').click(function(){
$('.box').stop(true,true)
})
})
</script>
</head>
<body>
<button class="you">右移</button>
<button class="sot">停止</button>
<div class="box">
冲鸭
</div>
</body>
</html>