当我使用jquery加载文档时,我试图让我的ul菜单从页面左侧飞入。我该怎么做呢?谢谢你的帮助。
答案 0 :(得分:1)
您可以使用jQuery.animate
为元素设置动画。
示例强>
$(document).ready(function(){
$('ul').animate({left:'20px'},800);
});
我已经创建了其他DEMO
供您查看。
答案 1 :(得分:0)
启动Dipesh Parmar的开始,我已经another working demo提出了几个关键的区别:
var startPos = 0 - objWidth;
left: $(document).width() - objWidth - 15
将其移动到页面边缘,显示完整对象(加上一点填充)由于演示对于你想要的东西来说有点过于复杂,所以这就是你追溯到的代码
var plane = $("#plane");
plane.css('left', plane.width()*-1); // Initially position the object off the page
plane.animate({
left: $(document).width() - $("#plane").width() - 15 // Go to the right edge, show the whole object, and some padding
}, 3000, 'linear') // Action takes 3000 milliseconds in a linear motion
的jQuery动画文档