jQuery 效果 - animate() 方法
原文地址:http://www.w3school.com.cn/jquery/effect_animate.asp
经过实际检验,这个style的值,比如“height”貌似不能为百分比,最好是px
例如:
[pcsh lang="js" tab_size="4" message="" hl_lines="" provider="manual"]
$("#shadow1").animate({height:"300px"},"slow"); // 可以通过
$("#shadow1").animate({height:"100%"},"slow"); // 不可以通过
[/pcsh]
实例
改变 "div" 元素的高度:
$(".btn1").click(function(){
$("#box").animate({height:"300px"});
});
$(selector).animate(styles,speed,easing,callback) 参数为一个css
最后更新于 2017-03-17 15:58:08 并被添加「」标签,已有 577 位童鞋阅读过。
此处评论已关闭