$(document).ready(function() { if($(window).width()<320){ return; } $('#fullpage').fullpage({ scrolloverflow: true, scrollingspeed: 1200, afterload: function(anchorlink, index) { if (index == 1) { $('.header').addclass('scroll-head'); } }, onleave: function(index, direction) { if (index == '1') { $('.header').removeclass('scroll-head'); } }, afterrender: function () { $(".yd-mouse").click(function () { $.fn.fullpage.movesectiondown(); }); } }); });