html animate可以制作动画

来源:互联网 发布:医学英文写作软件 编辑:程序博客网 时间:2024/05/22 02:28
$(document).ready(function()
  {
  $(".btn1").click(function(){
    $("#box").animate({height:"2px",width:"5px"});
  });
  $(".btn2").click(function(){
    $("#box").animate({height:"100px"});
  });
});
原创粉丝点击