Advertisement
Igor150195

Новые табы

Apr 13th, 2021
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. responsiveTabs: function() {
  2.                 if ($('#product-tabs').length) {
  3.                     $('.shop-product-data__nav li, .r-tabs-accordion-title').on('click', function(e){
  4.                         e.preventDefault();
  5.                         let href = $(this).find('a').attr('href');
  6.                         let $descArea = $(href);
  7.                    
  8.                         if ($descArea.is(':hidden')) {
  9.                             $('.shop-product-data__nav li, .r-tabs-accordion-title').removeClass('r-tabs-state-active');
  10.                             $('.shop-product-data__desc .desc-area').stop().slideUp(300);
  11.                         };
  12.                        
  13.                         if (window.matchMedia("(min-width: 768px)").matches) {
  14.                             $('#product-tabs a[href="'+ href +'"]').parent().addClass('r-tabs-state-active');
  15.                             $descArea.stop().slideDown(300);
  16.                         } else {
  17.                             $('#product-tabs a[href="'+ href +'"]').parent().toggleClass('r-tabs-state-active');
  18.                             $descArea.stop().slideToggle(300);
  19.                             if ($('.r-tabs-accordion-title.r-tabs-state-active').length) {
  20.                                 setTimeout(function(){
  21.                                     $('html, body').stop().animate({
  22.                                         scrollTop: $('.r-tabs-accordion-title.r-tabs-state-active').offset().top - 70  
  23.                                     }, 500);
  24.                                 }, 301);
  25.                             };
  26.                         };
  27.                     });
  28.                 };
  29.    
  30.             }, /*Табы*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement