当我的页面加载时,我想触发一个小的缓动效果,其中背景元素似乎“落到了位置”。这将在用户与页面交互之前发生。
我想我可以处理skrollr动画我只需知道用什么来触发这种效果。例如,我猜我会从:
开始$document.ready({ function() {
----action here----
});
谢谢!
答案 0 :(得分:0)
这应该可以解决您的问题
(文档)$。就绪(函数(){
//animations code here. But if you want to a delay for it you can use the function setTimeOut (http://www.w3schools.com/js/js_timing.asp).
setTimeout(function(){animate()},1000); // fires the function one second delayed
});
希望这有帮助