ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# **动画-模块-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> ```