fullpage静态验证
来源:3-3 JS类规划
weibo_FADE呵呵_04068236
2017-01-16
onLeave:function(index,nextIndex,direction){
$('#h5').find('.page').eq(index-1).trigger('onLeave');
},
afterLoad:function(anchorLink,index){
$('#h5').find('.page').eq(index-1).trigger('onLoad');
上面的是afterLoad而下面的是onLoad
$('.page').on('onLeave',function(){
console.log($(this).attr('id'),'==>','onLeave')
$(this).find('.component').trigger('onLeave');
})
$('.page').on('onLoad',function(){
console.log($(this).attr('id'),'==>','onLoad')
$(this).find('.component').trigger('onLoad');
})
为什么这都能运行
写回答
1回答
-
Lyn
2017-01-16
首先
afterLoad:function(anchorLink,index){ $('#h5').find('.page').eq(index-1).trigger('onLoad'); // fullpage 在当前页划入时,主动触发了所有 .page 的 onLoad 自定义事件
其次
$('.page').on('onLoad',function(){ // 定义了 onLoad 自定义事件的具体内容
00
相似问题