abstract:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="jq.js"></script> &l
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/javascript" src="jq.js"></script>
<style type="text/css">
.box{width:200px;height: 200px;background:blue;}
</style>
</head>
<body>
<button class="bt1">点击字体变大</button>
<p>我是你们永远得不到的爸爸</p>
<button class="bt2">点击移动div</button>
<div class="box">
我正在移动好刺激啊
</div>
</body>
</html>
<script type="text/javascript">
$(document).ready(function(){
$('.bt1').click(function(){
$('p').animate({fontSize:'50px'},1500)
})
$('.bt2').click(function(){
$('.box').animate({
marginLeft:'800px',
width:'toggle',
height:'800px',
opacity:0.3
},3000)
})
})
</script>