/**
* 该插件用于全屏几个页面上下滚动的容器,需要按规则写符合条件的html结构<br>
* <ul>
* <li>只支持全屏几个section上下滚动</li>
* <li>支持动态删除section</li>
* </ul>
*
* @module FullPage
* @subtitle 全屏滚动
*/
/**
* fullPage
* @namespace cmp
* @class fullPage
* @constructor
* @param {String|Object} container 列表容器标识,querySelector能定位的css选择器均可,比如:id、.class等,如:"#id"、".class"(必须符合以上两种形式的查询)
* @param {Object} options 配置参数
* @param {Function} options.onLeave 当前section离开时的回调函数
* @param {Function} options.afterLoad 下一个section加载完成后的回调
*
* @example
* ```
* <div id="fullPageContainer">
* <section>第一页</section>
* <section>第二页</section>
* <section>第三页</section>
* </div>
* <script>
* cmp.fullPage("#fullPageContainer",{
* onLeave:function(currentIndex,nextIndex,direction){
* //currentIndex:当前正准备离开的页面的页签数
* //nextIndex:即将跳转到下一个页面页签数
* //direction:返回页面跳转的方向 down:1----->2的方向 up: 2------>1的方向
* },
* afterLoad:function(pageName,pageIndex){
* //pageName:滚动完成后的section的名称
* //pageIndex:滚动完成后的section下标
* }
* });
* </script>
* ```
*/