为什么我在animate中设定了动画时间但却没有过渡效果?(ps:我用了fullpage
html代码:
ssssssssss
jquery代码:
$("document").ready(function(){
$("#moveDown").click(function(){
$("#the_balloon").animate({width:'40%'},1500);
})
}) |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
只有一个section你用fullpage干嘛?
而且你这个jquery的写法好古老。。。长久没用我都不知道对不对了。。
现在一般都简写为:
$(function(){//你要做的事}); |
|
|
|
|