{"version":3,"file":"/pc/all/libs/jquery.fullPage.js.map","sources":["/pc/all/libs/jquery.fullPage.js"],"sourcesContent":["/**\n * fullPage 2.6.5\n * https://github.com/alvarotrigo/fullPage.js\n * MIT licensed\n *\n * Copyright (C) 2015 alvarotrigo.com - A project by Alvaro Trigo\n */\n(function(global, factory) {\n 'use strict';\n if (typeof define === 'function' && define.amd) {\n define(['jquery'], function($) {\n return factory($, global, global.document, global.Math);\n });\n } else if (typeof exports !== 'undefined') {\n module.exports = factory(require('jquery'), global, global.document, global.Math);\n } else {\n factory(jQuery, global, global.document, global.Math);\n }\n})(typeof window !== 'undefined' ? window : this, function($, window, document, Math, undefined) {\n 'use strict';\n\n // keeping central set of classnames and selectors\n var WRAPPER = 'fullpage-wrapper';\n var WRAPPER_SEL = '.' + WRAPPER;\n\n // slimscroll\n var SCROLLABLE = 'fp-scrollable';\n var SCROLLABLE_SEL = '.' + SCROLLABLE;\n var SLIMSCROLL_BAR_SEL = '.slimScrollBar';\n var SLIMSCROLL_RAIL_SEL = '.slimScrollRail';\n\n // util\n var RESPONSIVE = 'fp-responsive';\n var NO_TRANSITION = 'fp-notransition';\n var DESTROYED = 'fp-destroyed';\n var ENABLED = 'fp-enabled';\n var VIEWING_PREFIX = 'fp-viewing';\n var ACTIVE = 'active';\n var ACTIVE_SEL = '.' + ACTIVE;\n\n // section\n var SECTION_DEFAULT_SEL = '.section';\n var SECTION = 'fp-section';\n var SECTION_SEL = '.' + SECTION;\n var SECTION_ACTIVE_SEL = SECTION_SEL + ACTIVE_SEL;\n var SECTION_FIRST_SEL = SECTION_SEL + ':first';\n var SECTION_LAST_SEL = SECTION_SEL + ':last';\n var TABLE_CELL = 'fp-tableCell';\n var TABLE_CELL_SEL = '.' + TABLE_CELL;\n\n // section nav\n var SECTION_NAV = 'fp-nav';\n var SECTION_NAV_SEL = '#' + SECTION_NAV;\n var SECTION_NAV_TOOLTIP = 'fp-tooltip';\n var SHOW_ACTIVE_TOOLTIP = 'fp-show-active';\n\n // slide\n var SLIDE_DEFAULT_SEL = '.slide';\n var SLIDE = 'fp-slide';\n var SLIDE_SEL = '.' + SLIDE;\n var SLIDE_ACTIVE_SEL = SLIDE_SEL + ACTIVE_SEL;\n var SLIDES_WRAPPER = 'fp-slides';\n var SLIDES_WRAPPER_SEL = '.' + SLIDES_WRAPPER;\n var SLIDES_CONTAINER = 'fp-slidesContainer';\n var SLIDES_CONTAINER_SEL = '.' + SLIDES_CONTAINER;\n var TABLE = 'fp-table';\n\n // slide nav\n var SLIDES_NAV = 'fp-slidesNav';\n var SLIDES_NAV_SEL = '.' + SLIDES_NAV;\n var SLIDES_NAV_LINK_SEL = SLIDES_NAV_SEL + ' a';\n var SLIDES_ARROW = 'fp-controlArrow';\n var SLIDES_ARROW_SEL = '.' + SLIDES_ARROW;\n var SLIDES_PREV = 'fp-prev';\n var SLIDES_PREV_SEL = '.' + SLIDES_PREV;\n var SLIDES_ARROW_PREV = SLIDES_ARROW + ' ' + SLIDES_PREV;\n var SLIDES_ARROW_PREV_SEL = SLIDES_ARROW_SEL + SLIDES_PREV_SEL;\n var SLIDES_NEXT = 'fp-next';\n var SLIDES_NEXT_SEL = '.' + SLIDES_NEXT;\n var SLIDES_ARROW_NEXT = SLIDES_ARROW + ' ' + SLIDES_NEXT;\n var SLIDES_ARROW_NEXT_SEL = SLIDES_ARROW_SEL + SLIDES_NEXT_SEL;\n\n var $window = $(window);\n var $document = $(document);\n var containerInView = 0;//容器在视口内高度\n $.fn.fullpage = function(options) {\n\n // common jQuery objects\n var $htmlBody = $('html, body');\n var $body = $('body');\n\n var FP = $.fn.fullpage;\n // Create some defaults, extending them with any options that were provided\n options = $.extend({\n //navigation\n menu: false,\n anchors:[],\n navigation: false,\n navigationPosition: 'right',\n navigationTooltips: [],//导航文字\n showActiveTooltip: false,\n slidesNavigation: false,\n slidesNavPosition: 'bottom',\n scrollBar: false,\n navigationText: [],\n //scrolling\n css3: true,\n scrollingSpeed: 700,\n autoScrolling: true,\n fitToSection: true,\n easing: 'easeInOutCubic',\n easingcss3: 'ease',\n loopBottom: false,\n loopTop: false,\n loopHorizontal: true,\n continuousVertical: false,\n normalScrollElements: null,\n scrollOverflow: false,\n touchSensitivity: 5,\n normalScrollElementTouchThreshold: 5,\n\n //Accessibility\n keyboardScrolling: true,\n animateAnchor: true,\n recordHistory: true,\n\n //design\n controlArrows: true,\n controlArrowColor: '#fff',\n verticalCentered: true,\n resize: false,\n sectionsColor : [],\n paddingTop: 0,\n paddingBottom: 0,\n fixedElements: null,\n responsive: 0,\n autoHeight: false, //自动高度,不整屏滚动\n //Custom selectors\n sectionSelector: SECTION_DEFAULT_SEL,\n slideSelector: SLIDE_DEFAULT_SEL,\n\n\n //events\n afterLoad: null,\n onLeave: null,\n afterRender: null,\n afterResize: null,\n afterReBuild: null,\n afterSlideLoad: null,\n onSlideLeave: null\n }, options);\n\n displayWarnings();\n\n\n //easeInOutCubic animation included in the plugin\n $.extend($.easing,{ easeInOutCubic: function (x, t, b, c, d) {if ((t/=d/2) < 1) return c/2*t*t*t + b;return c/2*((t-=2)*t*t + 2) + b;}});\n\n //TO BE REMOVED in future versions. Maintained temporaly for backwards compatibility.\n $.extend($.easing,{ easeInQuart: function (x, t, b, c, d) { return c*(t/=d)*t*t*t + b; }});\n\n /**\n * Sets the autoScroll option.\n * It changes the scroll bar visibility and the history of the site as a result.\n */\n FP.setAutoScrolling = function(value, type){\n setVariableState('autoScrolling', value, type);\n\n var element = $(SECTION_ACTIVE_SEL);\n\n if(options.autoScrolling && !options.scrollBar){\n $htmlBody.css({\n 'overflow' : 'hidden',\n 'height' : '100%'\n });\n\n FP.setRecordHistory(options.recordHistory, 'internal');\n\n //for IE touch devices\n container.css({\n '-ms-touch-action': 'none',\n 'touch-action': 'none'\n });\n\n if(element.length){\n //moving the container up\n silentScroll(element.position().top);\n }\n\n }else{\n $htmlBody.css({\n 'overflow' : 'visible',\n 'height' : 'initial'\n });\n\n FP.setRecordHistory(false, 'internal');\n\n //for IE touch devices\n container.css({\n '-ms-touch-action': '',\n 'touch-action': ''\n });\n\n silentScroll(0);\n\n //scrolling the page to the section with no animation\n if (element.length) {\n $htmlBody.scrollTop(element.position().top);\n }\n }\n\n };\n\n /**\n * Defines wheter to record the history for each hash change in the URL.\n */\n FP.setRecordHistory = function(value, type){\n setVariableState('recordHistory', value, type);\n };\n\n /**\n * Defines the scrolling speed\n */\n FP.setScrollingSpeed = function(value, type){\n setVariableState('scrollingSpeed', value, type);\n };\n\n /**\n * Sets fitToSection\n */\n FP.setFitToSection = function(value, type){\n setVariableState('fitToSection', value, type);\n };\n\n /**\n * Adds or remove the possiblity of scrolling through sections by using the mouse wheel or the trackpad.\n */\n FP.setMouseWheelScrolling = function (value){\n if(value){\n addMouseWheelHandler();\n }else{\n removeMouseWheelHandler();\n }\n };\n\n /**\n * Adds or remove the possiblity of scrolling through sections by using the mouse wheel/trackpad or touch gestures.\n * Optionally a second parameter can be used to specify the direction for which the action will be applied.\n *\n * @param directions string containing the direction or directions separated by comma.\n */\n FP.setAllowScrolling = function (value, directions){\n if(typeof directions != 'undefined'){\n directions = directions.replace(/ /g,'').split(',');\n\n $.each(directions, function (index, direction){\n setIsScrollable(value, direction);\n });\n }\n else if(value){\n FP.setMouseWheelScrolling(true);\n addTouchHandler();\n }else{\n FP.setMouseWheelScrolling(false);\n removeTouchHandler();\n }\n };\n\n /**\n * Adds or remove the possiblity of scrolling through sections by using the keyboard arrow keys\n */\n FP.setKeyboardScrolling = function (value){\n options.keyboardScrolling = value;\n };\n\n /**\n * Moves the page up one section.\n */\n FP.moveSectionUp = function(){\n var prev = $(SECTION_ACTIVE_SEL).prev(SECTION_SEL);\n\n //looping to the bottom if there's no more sections above\n if (!prev.length && (options.loopTop || options.continuousVertical)) {\n prev = $(SECTION_SEL).last();\n }\n\n if (prev.length) {\n scrollPage(prev, null, true);\n }\n };\n\n /**\n * Moves the page down one section.\n */\n FP.moveSectionDown = function (){\n var next = $(SECTION_ACTIVE_SEL).next(SECTION_SEL);\n\n //looping to the top if there's no more sections below\n if(!next.length &&\n (options.loopBottom || options.continuousVertical)){\n next = $(SECTION_SEL).first();\n }\n\n if(next.length){\n scrollPage(next, null, false);\n }\n };\n\n /**\n * Moves the page to the given section and slide with no animation.\n * Anchors or index positions can be used as params.\n */\n FP.silentMoveTo = function(sectionAnchor, slideAnchor){\n FP.setScrollingSpeed (0, 'internal');\n FP.moveTo(sectionAnchor, slideAnchor)\n FP.setScrollingSpeed (originals.scrollingSpeed, 'internal');\n };\n\n /**\n * Moves the page to the given section and slide.\n * Anchors or index positions can be used as params.\n */\n FP.moveTo = function (sectionAnchor, slideAnchor){\n var destiny = getSectionByAnchor(sectionAnchor);\n\n if (typeof slideAnchor !== 'undefined'){\n scrollPageAndSlide(sectionAnchor, slideAnchor);\n }else if(destiny.length > 0){\n scrollPage(destiny);\n }\n };\n\n /**\n * Slides right the slider of the active section.\n */\n FP.moveSlideRight = function(){\n moveSlide('next');\n };\n\n /**\n * Slides left the slider of the active section.\n */\n FP.moveSlideLeft = function(){\n moveSlide('prev');\n };\n\n /**\n * When resizing is finished, we adjust the slides sizes and positions\n */\n FP.reBuild = function(resizing){\n if(container.hasClass(DESTROYED)){ return; } //nothing to do if the plugin was destroyed\n\n isResizing = true;\n\n var windowsWidth = $window.width();\n windowsHeight = $window.height(); //updating global var\n\n //text resizing\n if (options.resize) {\n resizeMe(windowsHeight, windowsWidth);\n }\n\n $(SECTION_SEL).each(function(){\n var slidesWrap = $(this).find(SLIDES_WRAPPER_SEL);\n var slides = $(this).find(SLIDE_SEL);\n\n //adjusting the height of the table-cell for IE and Firefox\n if(options.verticalCentered){\n $(this).find(TABLE_CELL_SEL).css('height', getTableHeight($(this)) + 'px');\n }\n\n $(this).css('height', windowsHeight + 'px');\n\n //resizing the scrolling divs\n if(options.scrollOverflow){\n if(slides.length){\n slides.each(function(){\n createSlimScrolling($(this));\n });\n }else{\n createSlimScrolling($(this));\n }\n }\n\n //adjusting the position fo the FULL WIDTH slides...\n if (slides.length > 1) {\n landscapeScroll(slidesWrap, slidesWrap.find(SLIDE_ACTIVE_SEL));\n }\n });\n\n var activeSection = $(SECTION_ACTIVE_SEL);\n var sectionIndex = activeSection.index(SECTION_SEL);\n\n //isn't it the first section?\n if(sectionIndex){\n //adjusting the position for the current section\n FP.silentMoveTo(sectionIndex + 1);\n }\n\n isResizing = false;\n $.isFunction( options.afterResize ) && resizing && options.afterResize.call(container);\n $.isFunction( options.afterReBuild ) && !resizing && options.afterReBuild.call(container);\n };\n\n //flag to avoid very fast sliding for landscape sliders\n var slideMoving = false;\n\n var isTouchDevice = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|playbook|silk|BlackBerry|BB10|Windows Phone|Tizen|Bada|webOS|IEMobile|Opera Mini)/);\n var isTouch = (('ontouchstart' in window) || (navigator.msMaxTouchPoints > 0) || (navigator.maxTouchPoints));\n var container = $(this);\n var windowsHeight = $window.height();\n var isResizing = false;\n var lastScrolledDestiny;\n var lastScrolledSlide;\n var canScroll = true;\n var scrollings = [];\n var nav;\n var controlPressed;\n var isScrollAllowed = { 'up':true, 'down':true, 'left':true, 'right':true };\n var originals = $.extend(true, {}, options); //deep copy\n\n if($(this).length){\n container.css({\n 'height': '100%',\n 'position': 'relative'\n });\n\n //adding a class to recognize the container internally in the code\n container.addClass(WRAPPER);\n $('html').addClass(ENABLED);\n }\n //trying to use fullpage without a selector?\n else{\n showError('error', 'Error! Fullpage.js needs to be initialized with a selector. For example: $(\\'#myContainer\\').fullpage();');\n }\n\n //if css3 is not supported, it will use jQuery animations\n if(options.css3){\n options.css3 = support3d();\n }\n\n FP.setAllowScrolling(true);\n container.removeClass(DESTROYED); //in case it was destroyed before initilizing it again\n\n\n //adding internal class names to void problem with common ones\n $(options.sectionSelector).each(function(){\n $(this).addClass(SECTION);\n });\n $(options.slideSelector).each(function(){\n $(this).addClass(SLIDE);\n });\n\n //creating the navigation dots\n if (options.navigation) {\n addVerticalNavigation();\n }\n\n //styling the sections\n $(SECTION_SEL).each(function(index){\n var that = $(this);\n var slides = $(this).find(SLIDE_SEL);\n var numSlides = slides.length;\n\n //if no active section is defined, the 1st one will be the default one\n if(!index && $(SECTION_ACTIVE_SEL).length === 0) {\n $(this).addClass(ACTIVE);\n }\n\n !options.autoHeight && $(this).css('height', windowsHeight + 'px');//非自动高度,就用整屏\n\n if(options.paddingTop){\n $(this).css('padding-top', options.paddingTop);\n }\n\n if(options.paddingBottom){\n $(this).css('padding-bottom', options.paddingBottom);\n }\n\n if (typeof options.sectionsColor[index] !== 'undefined') {\n $(this).css('background-color', options.sectionsColor[index]);\n }\n\n if (typeof options.anchors[index] !== 'undefined') {\n $(this).attr('data-anchor', options.anchors[index]);\n\n //activating the menu / nav element on load\n if($(this).hasClass(ACTIVE)){\n activateMenuAndNav(options.anchors[index], index);\n }\n }\n\n // if there's any slide\n if (numSlides > 0) {\n var sliderWidth = numSlides * 100;\n var slideWidth = 100 / numSlides;\n\n slides.wrapAll('
');\n slides.parent().wrap('');\n\n $(this).find(SLIDES_CONTAINER_SEL).css('width', sliderWidth + '%');\n\n if(options.controlArrows && numSlides > 1){\n createSlideArrows($(this));\n }\n\n if(options.slidesNavigation){\n addSlidesNavigation($(this), numSlides);\n }\n\n slides.each(function(index) {\n $(this).css('width', slideWidth + '%');\n\n if(options.verticalCentered){\n addTableClass($(this));\n }\n });\n\n var startingSlide = that.find(SLIDE_ACTIVE_SEL);\n\n //if the slide won#t be an starting point, the default will be the first one\n if(!startingSlide.length){\n slides.eq(0).addClass(ACTIVE);\n }\n\n //is there a starting point for a non-starting section?\n else{\n silentLandscapeScroll(startingSlide);\n }\n\n }else{\n if(options.verticalCentered){\n addTableClass($(this));\n }\n }\n\n }).promise().done(function(){\n FP.setAutoScrolling(options.autoScrolling, 'internal');\n\n //the starting point is a slide?\n var activeSlide = $(SECTION_ACTIVE_SEL).find(SLIDE_ACTIVE_SEL);\n\n //the active section isn't the first one? Is not the first slide of the first section? Then we load that section/slide by default.\n if( activeSlide.length && ($(SECTION_ACTIVE_SEL).index(SECTION_SEL) !== 0 || ($(SECTION_ACTIVE_SEL).index(SECTION_SEL) === 0 && activeSlide.index() !== 0))){\n silentLandscapeScroll(activeSlide);\n }\n\n //fixed elements need to be moved out of the plugin container due to problems with CSS3.\n if(options.fixedElements && options.css3){\n $(options.fixedElements).appendTo($body);\n }\n\n //vertical centered of the navigation + first bullet active\n if(options.navigation){\n nav.css('margin-top', '-' + (nav.height()/2) + 'px');\n nav.find('li').eq($(SECTION_ACTIVE_SEL).index(SECTION_SEL)).find('a').addClass(ACTIVE);\n }\n\n //moving the menu outside the main container if it is inside (avoid problems with fixed positions when using CSS3 tranforms)\n if(options.menu && options.css3 && $(options.menu).closest(WRAPPER_SEL).length){\n $(options.menu).appendTo($body);\n }\n\n if(options.scrollOverflow){\n if(document.readyState === 'complete'){\n createSlimScrollingHandler();\n }\n //after DOM and images are loaded\n $window.on('load', createSlimScrollingHandler);\n }else{\n afterRenderActions();\n }\n\n responsive();\n\n //for animateAnchor:false\n if(!options.animateAnchor){\n //getting the anchor link in the URL and deleting the `#`\n var value = window.location.hash.replace('#', '').split('/');\n var destiny = value[0];\n\n if(destiny.length){\n var section = $('[data-anchor=\"'+destiny+'\"]');\n\n if(section.length){\n if(options.autoScrolling){\n silentScroll(section.position().top);\n }\n else{\n silentScroll(0);\n\n //scrolling the page to the section with no animation\n $htmlBody.scrollTop(section.position().top);\n }\n activateMenuAndNav(destiny, null);\n\n $.isFunction( options.afterLoad ) && options.afterLoad.call( section, destiny, (section.index(SECTION_SEL) + 1));\n\n //updating the active class\n section.addClass(ACTIVE).siblings().removeClass(ACTIVE);\n }\n }\n }\n\n //setting the class for the body element\n setBodyClass();\n\n $window.on('load', function() {\n scrollToAnchor();\n });\n\n });\n\n\n /**\n * Creates the control arrows for the given section\n */\n function createSlideArrows(section){\n section.find(SLIDES_WRAPPER_SEL).after('');\n\n if(options.controlArrowColor!='#fff'){\n section.find(SLIDES_ARROW_NEXT_SEL).css('border-color', 'transparent transparent transparent '+options.controlArrowColor);\n section.find(SLIDES_ARROW_PREV_SEL).css('border-color', 'transparent '+ options.controlArrowColor + ' transparent transparent');\n }\n\n if(!options.loopHorizontal){\n section.find(SLIDES_ARROW_PREV_SEL).hide();\n }\n }\n\n /**\n * Creates a vertical navigation bar.\n */\n function addVerticalNavigation(){\n $body.append('