Advertisement
Guest User

tabsection

a guest
Aug 1st, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // -------------------------------------------------------------------------------------------
  2. // Tab Section
  3. // -------------------------------------------------------------------------------------------
  4.  
  5. $.fn.avia_sc_tab_section= function()
  6. {
  7.     var win             = $(window),
  8.         browserPrefix   = $.avia_utilities.supports('transition'),
  9.         cssActive       = this.browserPrefix !== false ? true : false,
  10.         isMobile        = $.avia_utilities.isMobile,
  11.         transform3d     = document.documentElement.className.indexOf('avia_transform3d') !== -1 ? true : false,
  12.         transition      = {};
  13.        
  14.     return this.each(function()
  15.     {
  16.         var container       = $(this),
  17.             tabs            = container.find('.av-section-tab-title'),
  18.                 tab_outer = container.find('.av-tab-section-outer-container'),
  19.             tab_wrap        = container.find('.av-tab-section-tab-title-container'),
  20.             tab_nav         = container.find('.av_tab_navigation'),
  21.             content_wrap    = container.find('.av-tab-section-inner-container'),
  22.             single_tabs     = container.find('.av-animation-delay-container'), //for elements inside the tab that receive waypoint animation
  23.             inner_content   = container.find('.av-layout-tab-inner'),
  24.             sliding_active  = container.is('.av-tab-slide-transition'),
  25.             flexible        = container.is('.av-tab-content-auto'),
  26.             current_content = container.find('.__av_init_open'),
  27.             min_width       = 0,
  28.             change_tab      = function(e)
  29.             {
  30.                 e.preventDefault();
  31.                
  32.                 var current_tab     = $(e.currentTarget),
  33.                     current_arrow   = current_tab.find('.av-tab-arrow-container span'),
  34.                     tab_nr          = current_tab.data('av-tab-section-title');
  35.                    
  36.                     current_content = container.find('[data-av-tab-section-content="'+tab_nr+'"]');
  37.                
  38.                 var new_bg          = current_content.data('av-tab-bg-color'),
  39.                     new_font        = current_content.data('av-tab-color'),
  40.                     prev_container  = container.find('.av-active-tab-content').not('[data-av-tab-section-content="'+tab_nr+'"]');
  41.  
  42.                 tabs.attr('style','').removeClass('av-active-tab-title');
  43.                 current_tab.addClass('av-active-tab-title');
  44.                 current_content.addClass("av-active-tab-content");
  45.                
  46.                 if(new_bg !== "") current_arrow.css('background-color', new_bg);
  47.                 if(new_font !== "") current_tab.css('color', new_font);
  48.                    
  49.                 var new_pos = ((parseInt(tab_nr,10) - 1) * -100 );
  50.                
  51.                 if(cssActive)
  52.                 {
  53.                     //move the slides
  54.                     new_pos = new_pos / tabs.length;
  55.                     transition['transform']  = transform3d ? "translate3d(" + new_pos  + "%, 0, 0)" : "translate(" + new_pos + "%,0)"; //3d or 2d transform?
  56.                     transition['left'] = "0%";
  57.                     content_wrap.css(transition);
  58.                 }
  59.                 else
  60.                 {
  61.                     content_wrap.css('left',  new_pos + "%");
  62.                 }
  63.                
  64.                 set_tab_titlte_pos();
  65.                 set_slide_height();
  66.                
  67.                 setTimeout(function()
  68.                 {
  69.                     current_content.trigger('avia_start_animation_if_current_slide_is_active');
  70.                     single_tabs.not(current_content).trigger('avia_remove_animation');
  71.                    
  72.                 }, 600);   
  73.                
  74.             },
  75.             set_min_width = function()
  76.             {
  77.                 min_width = 0;
  78.                 tabs.each(function()
  79.                 {
  80.                     min_width += $(this).outerWidth();
  81.                 });
  82.                
  83.                 tab_wrap.css('min-width',min_width);
  84.             },
  85.            
  86.             set_slide_height = function()
  87.             {              
  88.                 if(current_content.length && flexible)
  89.                 {
  90.                     var old_height = inner_content.height();
  91.                     inner_content.height('auto');
  92.                    
  93.                     var height = current_content.find('.av-layout-tab-inner').height(),
  94.                         add_height = tab_wrap.height();
  95.                    
  96.                     tab_outer.css('max-height', height + add_height + 100);
  97.                     inner_content.height(old_height);
  98.                     inner_content.height(height);
  99.                    
  100.                     setTimeout(function() { win.trigger('av-height-change'); }, 600);
  101.                 }
  102.             },
  103.            
  104.             set_tab_titlte_pos = function()
  105.             {
  106.                 //scroll the tabs if there is not enough room to display them all
  107.                 var current_tab = container.find('.av-active-tab-title'),
  108.                     viewport    = container.width(),
  109.                     left_pos    = viewport < min_width ? (current_tab.position().left * - 1) - (current_tab.outerWidth() / 2) + (viewport / 2): 0;
  110.                
  111.                 if(left_pos + min_width < viewport) left_pos = (min_width - viewport) * -1;
  112.                 if(left_pos > 0) left_pos = 0;
  113.                
  114.                 tab_wrap.css('left',left_pos );
  115.             },
  116.             switch_to_next_prev = function(e)
  117.             {
  118.                 if(!isMobile) return;
  119.                
  120.                 var clicked         = $(e.currentTarget),
  121.                     current_tab     = container.find('.av-active-tab-title');
  122.                    
  123.                     if(clicked.is('.av_prev_tab_section'))
  124.                     {
  125.                         current_tab.prev('.av-section-tab-title').trigger('click');
  126.                     }
  127.                     else
  128.                     {
  129.                         current_tab.next('.av-section-tab-title').trigger('click');
  130.                     }
  131.             },
  132.            
  133.             get_init_open = function()
  134.             {
  135.                 if(!hash && window.location.hash) hash = window.location.hash;
  136.                         if(!hash) return;
  137.                        
  138.                 var open = tabs.filter('[data-tab-section-id="'+hash+'"]');
  139.    
  140.                 if(open.length)
  141.                 {
  142.                     if(!open.is('.active_tab')) open.trigger('click');
  143.                     window.scrollTo(0, container.offset().top - 70);
  144.                 }
  145.             };
  146.                
  147.         $.avia_utilities.preload({
  148.            
  149.             container: current_content ,
  150.             single_callback:  function(){
  151.            
  152.                 tabs.on('click', change_tab);
  153.                 tab_nav.on('click', switch_to_next_prev);
  154.                 win.on('debouncedresize', set_tab_titlte_pos); 
  155.                 win.on('debouncedresize av-height-change', set_slide_height);  
  156.                
  157.                 set_min_width();
  158.                 set_slide_height();
  159.            
  160.             }
  161.            
  162.         });
  163.            
  164.        
  165.        
  166.         //force a click on page load to properly set the tab color
  167.         container.find('.av-active-tab-title').trigger('click');   
  168.        
  169.         content_wrap.avia_swipe_trigger({prev:'.av_prev_tab_section', next:'.av_next_tab_section'});
  170.            
  171.     });
  172. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement