support 447 Опубликовано 13 ноября, 2014 Жалоба Share Опубликовано 13 ноября, 2014 В /app/webroot/js/vamshop.js меняйте: // Only apply the fixed stuff to desktop devices // ----------------------------------------------------------------------------- $(function(){ if ( ! /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) { // #navigation fixed if ($(window).width() > 767) { // var menu = $('#navigation'), pos = menu.offset(); $(window).scroll(function(){ if($(this).scrollTop() > pos.top+menu.height() && menu.hasClass('default')){ menu.fadeOut('fast', function(){ $(this).removeClass('default').addClass('fixed').fadeIn('fast'); }); } else if($(this).scrollTop() <= pos.top && menu.hasClass('fixed')){ menu.fadeOut('fast', function(){ $(this).removeClass('fixed').addClass('default').fadeIn('fast'); }); } }); } } }); на: // Only apply the fixed stuff to desktop devices // ----------------------------------------------------------------------------- //$(function(){ //if ( ! /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) { // #navigation fixed //if ($(window).width() > 767) { // //var menu = $('#navigation'), //pos = menu.offset(); //$(window).scroll(function(){ //if($(this).scrollTop() > pos.top+menu.height() && menu.hasClass('default')){ //menu.fadeOut('fast', function(){ //$(this).removeClass('default').addClass('fixed').fadeIn('fast'); //}); //} else if($(this).scrollTop() <= pos.top && menu.hasClass('fixed')){ //menu.fadeOut('fast', function(){ //$(this).removeClass('fixed').addClass('default').fadeIn('fast'); //}); //} //}); //} //} //}); Ссылка на сообщение Поделиться на другие сайты
Рекомендуемые сообщения