123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- $(window).scroll(function() {
- if ($(window).scrollTop() >= 41) {
- $('body').addClass('header-fixed');
- } else {
- $('body').removeClass('header-fixed');
- }
- });
- //mobile touch
- $(document).ready(function($) {
-
- $( ".carousel" ).carousel();
- });
- $(document).ready(function($) {
- $('a[data-action=customize_theme]').click(function() {
- setTimeout(function(){
- if ($('.modal-body').hasClass('cstm-customized-theme') == true)
- {
- $('.modal-body').parent().parent().addClass('only-cstm-theme')
- $('.modal-body').parent().addClass('only-cstm-theme')
- }
- }, 100);
- });
- // browser window scroll (in pixels) after which the "back to top" link is shown
- var offset = 300,
- //browser window scroll (in pixels) after which the "back to top" link opacity is reduced
- offset_opacity = 1200,
- //duration of the top scrolling animation (in ms)
- scroll_top_duration = 700,
- //grab the "back to top" link
- $back_to_top = $('.cd-top');
- //hide or show the "back to top" link
- $(window).scroll(function() {
- ($(this).scrollTop() > offset) ? $back_to_top.addClass('cd-is-visible'): $back_to_top.removeClass('cd-is-visible cd-fade-out');
- if ($(this).scrollTop() > offset_opacity) {
- $back_to_top.addClass('cd-fade-out');
- }
- });
- //smooth scroll to top
- $back_to_top.on('click', function(event) {
- event.preventDefault();
- $('body,html').animate({
- scrollTop: 0,
- }, scroll_top_duration);
- });
- $('div#recommended_products_slider').owlCarousel({
- margin: 10,
- responsiveClass: true,
- items: 4,
- loop: true,
- autoPlay: 7000,
- stopOnHover: true,
- navigation: true,
- responsive: {
- 0: {
- items: 1,
- nav: false
- },
- 500: {
- items: 2,
- nav: false
- },
- 700: {
- items: 3,
- margin: 10,
- nav: false
- },
- 1000: {
- items: 4,
- nav: false,
- loop: false
- },
- 1500: {
- items: 4,
- nav: false,
- loop: false
- }
- }
- });
- // Grid/List switching code
- $(".oe_website_sale .shift_list_view").click(function(e) {
- $(".oe_website_sale .shift_grid_view").removeClass('active')
- $(this).addClass('active')
- $('#products_grid').addClass("list-view-box");
- $('.oe_website_sale .oe_subdescription').addClass('o_hidden');
- localStorage.setItem("product_view", "list");
- });
- $(".oe_website_sale .shift_grid_view").click(function(e) {
- $(".oe_website_sale .shift_list_view").removeClass('active')
- $(this).addClass('active')
- $('#products_grid').removeClass("list-view-box");
- $('.oe_website_sale .oe_subdescription').removeClass('o_hidden');
- localStorage.setItem("product_view", "grid");
- });
- if (localStorage.getItem("product_view") == 'list') {
- $(".oe_website_sale .shift_grid_view").removeClass('active')
- $(".oe_website_sale .shift_list_view").addClass('active')
- $('.oe_website_sale .oe_subdescription').addClass('o_hidden');
- $('#products_grid').addClass("list-view-box");
- }
- if (localStorage.getItem("product_view") == 'grid') {
- $(".oe_website_sale .shift_list_view").removeClass('active')
- $(".oe_website_sale .shift_grid_view").addClass('active')
- $('.oe_website_sale .oe_subdescription').removeClass('o_hidden');
- $('#products_grid').removeClass("list-view-box");
- }
- // Grid/List switching code ends
- // Switched to review section
- $('p.review').click(function() {
- $('body').animate({scrollTop: $(this).offset().top}, 1800);
- $('ul#description_reviews_tabs > li').removeClass('active')
- $('div#description_reviews_tabs_contents > div').removeClass('active')
- $('ul#description_reviews_tabs > li:nth-child(2)').addClass('active')
- $('div#description_reviews_tabs_contents > div:nth-child(2)').addClass('active')
- });
- // Toggle global search
- $('.st-toggle').on('click', function (e) {
- $('.search-toggle').toggleClass("search-toggle-open");
- });
- });
- // For Megamenu
- $(document).on('click', '.mega-dropdown-menu', function(e) {
- e.stopPropagation()
- });
- //Equal height
- $(window).load(function() {
- equal_height_all();
- });
- function equal_height_all() {
- function resetHeight() {
- var maxHeight = 0;
- jQuery(".cs-product .pwp-info .pwpi-title").height("auto").each(function() {
- maxHeight = $(this).height() > maxHeight ? $(this).height() : maxHeight;
- }).height(maxHeight);
- }
- resetHeight();
- jQuery(window).resize(function() {
- resetHeight();
- });
- }
- $(document).ready(function(){
-
- $(".li-mega-menu > a").click(function(){
- $(this).parent().parent().toggleClass("mob-open");
- });
- });
- //mobile Touch
-
|