标签:
前几天做项目时PM突然跟我说,这块再弹出的时候要加动画,要有玄幻元素... 我想了想,那就用jq的动画吧,但开始做的时候出了点小问题,原因就是参数给错了,突然想起animate只接受数字值。
上个代码吧,警示自己,不能学一些忘一些。
$(document).ready(function() { $(".btn1").click(function(){ $("#box").animate({height:"300px"}); }); $(".btn2").click(function(){ $("#box").animate({height:"100px"}); }); }); </script> </head> <body> <div id="box" style="background:#98bf21;height:100px;width:100px;margin:6px;"> </div> <button class="btn1">Animate</button> <button class="btn2">Reset</button>
标签:
原文地址:http://www.cnblogs.com/GetAlert/p/4541907.html