怎么做? 我有这个代码用于animation.css(http://justinaguilar.com/animations/):
$(document).ready(function(){
var divAn = $('#an-container #forAnimation');
$(window).scroll(function() {
divAn.each(function(){
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow+300) {
var animation = $(this).attr('animate');
if ( $(this).attr('animate') == null) animation = 'slideUp';
$(this).addClass(animation);
}
});
});
});
如何在fullPage.js(https://github.com/alvarotrigo/fullPage.js#callbacks)中使用afterLoad正确编写它:
function (anchor Link, index) {....
答案 0 :(得分:0)
您可以使用fullpage.js的fullpage.js选项scrollBar:true
,这样滚动事件就会被触发。