$('#section3').hover(function() { $('#fp-nav').toggleClass('bgW'); }); $(document).ready(function() { /* Toggle Subnav - More -------------------------------------------------------------------------------*/ function toggle_subnav_more() { $('.global-nav-more, .main-overlay').click(function () { event.preventDefault(); $('html').toggleClass('subnav-open'); }); //$('.global-nav-more, .main-overlay').mouseout(function () { // event.preventDefault(); // $('html').removeClass('subnav-open'); //}); $('.global-nav-more2' ).click(function () { event.preventDefault(); $('html').toggleClass('subnav-open2'); }); //$('.global-nav-more2' ).mouseout(function () { // event.preventDefault(); // $('html').removeClass('subnav-open2'); //}); } toggle_subnav_more(); /* Homepage FullPage Scroll Jack Layout -------------------------------------------------------------------------------*/ function homepage_fullpage() { $('#homepage-fullpage').fullpage({ //Navigation menu: '#menu', lockAnchors: false, anchors: ['home', 'slide1', 'slide2', 'slide3', 'slide4', 'slide5', 'slide6'], navigation: true, navigationPosition: 'right', navigationTooltips: ['home', 'company', 'brand', 'product', 'info', 'info'], showActiveTooltip: true, slidesNavigation: true, slidesNavPosition: 'bottom', //Scrolling css3: true, scrollingSpeed: 800, autoScrolling: false, fitToSection: false, /*fitToSectionDelay: 1000,*/ scrollBar: false, easing: 'easeInOutCubic', easingcss3: 'ease', loopBottom: false, loopTop: false, loopHorizontal: true, continuousVertical: false, continuousHorizontal: false, scrollHorizontally: false, interlockedSlides: false, resetSliders: false, fadingEffect: false, normalScrollElements: '#element1, .element2', scrollOverflow: true, scrollOverflowOptions: null, touchSensitivity: 15, normalScrollElementTouchThreshold: 5, bigSectionsDestination: null, //Accessibility keyboardScrolling: true, animateAnchor: true, recordHistory: true, //Design controlArrows: true, verticalCentered: true, sectionsColor : ['#333', '#444','#fff', '#dfdfdf','#fff', '#f0f0f0','#333','#333'], paddingTop: '0em', paddingBottom: '0em', fixedElements: '.sidemenu', responsiveWidth: 0, responsiveHeight: 0, responsiveSlides: false, //Custom selectors sectionSelector: '.section', slideSelector: '.slider', //events // onLeave: function(index, nextIndex, direction){}, // afterLoad: function(anchorLink, index){}, //afterRender: function(){}, // afterResize: function(){}, //afterSlideLoad: function(anchorLink, index, slideAnchor, slideIndex){}, // onSlideLeave: function(anchorLink, index, slideIndex, direction, nextSlideIndex){} afterLoad: function(anchorLink, index){ if($(this).find(".video-background").length) { // If the length is greater than 0, bg video element exists $('.active .video-background').get(0).play(); $('.active .video-background').get(1).play(); $('.active .video-background').get(2).play(); $('.active .video-background').get(3).play(); $('.active .video-background').get(4).play(); //console.log("section has bg video"); } else { // else, false, bg video element doesn't exist // do nothing } } }); } homepage_fullpage(); });