# **动画-模块-animate**
例子:点击改变宽度
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 500px;
height: 200px;
background-color: red;
margin: 10px;
}
</style>
</head>
<body>
<button id="btn">点击改改变宽度</button>
<div class="box">1</div>
<!--引入jq-->
<!--<script src="js/jquery-3.2.0.js"></script>-->
<!--引入zepto-->
<script src="js/zepto.min.js"></script>
<script src="js/fx.js"></script>
<script>
$(function () {
$('#btn').on('click',function () {
$('.box').animate({
//也可以这样 $('box').css({k:v}),然后在<style></style>中添加过渡
width:'300px',
})
})
})
</script>
</body>
</html>
```