$(document).ready(function () { $('#header nav').meanmenu({meanMenuContainer: '.navi', meanScreenWidth: "767"}); $('.featured-slider').slick({arrows:false, autoplay:true}); $('.shop-slider').slick({ arrows:true, slidesToShow:3, centerMode:true, centerPadding:0, autoplay:true, speed:900, autoplaySpeed:5000, responsive:[{ breakpoint:540, settings:{ slidesToShow:2, centerMode:false } }] }); $('.related-slider').slick({ arrows:false, slidesToShow:3, responsive:[{ breakpoint:540, settings:{ slidesToShow:2 } }] }); $('.single-product-cont ul.products').slick({ dots:true, infinite:false, arrows:false, speed:300, autoplay:false, slidesToShow:4, slidesToScroll:4, responsive:[{ breakpoint:1024, settings: { slidesToShow:3, slidesToScroll:3 } }, { breakpoint:667, settings: { slidesToShow:2, slidesToScroll:2 } }] }); }); $(window).scroll(function(){ var wpos = $(window).scrollTop(); var wh = $(window).height(); var pos1 = $('.fixed-scroll').position().top - 50; var pos2 = $('.shop-banner').position().top - wh - 25; var h1 = $('.fixed-box').height(); var h2 = $('.scroll-box').height(); var mh = h2-h1; if(wpos > pos1 && wpos < pos2){ $('.fixed-scroll .fixed-box').addClass('fix'); } else { $('.fixed-scroll .fixed-box').removeClass('fix'); } if(wpos > pos2){ $('.fixed-scroll .fixed-box').css('margin-top', mh); } else { $('.fixed-scroll .fixed-box').css('margin-top','0px'); } $('.sup').each(function(){ var imagePos = $(this).offset().top; var topOfWindow = $(window).scrollTop(); if (imagePos < topOfWindow+600) { $(this).addClass("slideUp"); } }); }); $(window).load(function(){ var orgText = $('.cartcontents').html(); var index = orgText.indexOf(' '); var textModified = orgText.substring(0, index); $('.cartcontents').html(textModified).css('opacity','1'); });