$(function(){ $('#tps a').on('mouseenter mouseleave', function(e){ if('ontouchstart' in window) return false; if(e.type == 'mouseenter') $(this).addClass('hover'); if(e.type == 'mouseleave') $(this).removeClass('hover'); }); $('#tps #anchor_1 a').scrollTo({ scrollTo: '#tps #info_1', //delay: 4000, duration: 500, //easing: 'swing', diff: [-30, -35, -15] }); $('#tps #banner_1 a').scrollTo({ scrollTo: '#tps #subscribe_1', //delay: 4000, duration: 500, //easing: 'swing', diff: [-20, -30, -15] }); });