app.js
916 Bytes
$(window).load(function(){
$(".app-item").addClass("hide");
var upthis = null;
$('#fullpage').fullpage({
css3: true,
// slidesNavigation:true,
onSlideLeave:function(prevSlide, anchorLink,sectionIndex, prevSlideIndex, slideIndex){
$(".app-item").eq(anchorLink-1).find(".navitems li").removeClass('active').eq(slideIndex).addClass('active');
},
afterLoad : function(anchorLink, index){
if(index == 1){
$("#fullpage").show();
};
if(index == 7){
$(".tip").hide();
}else{
$(".tip").show();
}
if(index == 5){
$(".tip").addClass('orange_tip');
}
if(index == 6){
$(".tip").hide();
}
if(upthis){upthis.addClass("hide")};
$(".app-item").eq(index-1).removeClass("hide");
upthis = $(".app-item").eq(index-1);
},
onLeave:function(leavingSectionIndex, sectionIndex, yMovement){
$(".tip").removeClass('orange_tip');
$(".tip").show();
}
});
});