手機整屏滑動外掛-----fullPage.js------使用
阿新 • • 發佈:2019-02-19
如今我們經常能見到全屏網站,尤其是國外網站。這些網站用幾幅很大的圖片或色塊做背景,再新增一些簡單的內容,顯得格外的高階大氣上檔次
fullPage.js 是一個基於 jQuery 的外掛,它能夠很方便、很輕鬆的製作出全屏網站,正好最近公司的一個專案用到整屏,並且只要
首頁整屏滑動,其他正常滑動;當然還要其他的需求,這裡就不嘮叨了。
直接上乾貨-----------選項 | 型別 | 預設值 | 說明 |
---|---|---|---|
verticalCentered | 字串 | true | 內容是否垂直居中 |
resize | 布林值 | false | 字型是否隨著視窗縮放而縮放 |
slidesColor | 函式 | 無 | 設定背景顏色 |
anchors | 陣列 | 無 | 定義錨鏈接 |
scrollingSpeed | 整數 | 700 | 滾動速度,單位為毫秒 |
easing | 字串 | easeInQuart | 滾動動畫方式 |
menu | 布林值 | false | 繫結選單,設定的相關屬性與 anchors 的值對應後,選單可以控制滾動 |
navigation | 布林值 | false | 是否顯示專案導航 |
navigationPosition | 字串 | right | 專案導航的位置,可選 left 或 right |
navigationColor | 字串 | #000 | 專案導航的顏色 |
navigationTooltips | 陣列 | 空 | 專案導航的 tip |
slidesNavigation | 布林值 | false | 是否顯示左右滑塊的專案導航 |
slidesNavPosition | 字串 | bottom | 左右滑塊的專案導航的位置,可選 top 或 bottom |
controlArrowColor | 字串 | #fff | 左右滑塊的箭頭的背景顏色 |
loopBottom | 布林值 | false | 滾動到最底部後是否滾回頂部 |
loopTop | 布林值 | false | 滾動到最頂部後是否滾底部 |
loopHorizontal | 布林值 | true | 左右滑塊是否迴圈滑動 |
autoScrolling | 布林值 | true | 是否使用外掛的滾動方式,如果選擇 false,則會出現瀏覽器自帶的滾動條 |
scrollOverflow | 布林值 | false | 內容超過滿屏後是否顯示滾動條 |
css3 | 布林值 | false | 是否使用 CSS3 transforms 滾動 |
paddingTop | 字串 | 0 | 與頂部的距離 |
paddingBottom | 字串 | 0 | 與底部距離 |
fixedElements | 字串 | 無 | |
normalScrollElements | 無 | ||
keyboardScrolling | 布林值 | true | 是否使用鍵盤方向鍵導航 |
touchSensitivity | 整數 | 5 | |
continuousVertical | 布林值 | false | 是否迴圈滾動,與 loopTop 及 loopBottom 不相容 |
animateAnchor | 布林值 | true | |
normalScrollElementTouchThreshold | 整數 | 5 |
fullPage.js中文api 方法
名稱 | 說明 |
---|---|
moveSectionUp() | 向上滾動 |
moveSectionDown() | 向下滾動 |
moveTo(section, slide) | 滾動到 |
moveSlideRight() | slide 向右滾動 |
moveSlideLeft() | slide 向左滾動 |
setAutoScrolling() | 設定頁面滾動方式,設定為 true 時自動滾動 |
setAllowScrolling() | 新增或刪除滑鼠滾輪/觸控板控制 |
setKeyboardScrolling() | 新增或刪除鍵盤方向鍵控制 |
setScrollingSpeed() | 定義以毫秒為單位的滾動速度 |
fullPage.js中文api 回撥函式
名稱 | 說明 |
---|---|
afterLoad | 滾動到某一屏後的回撥函式,接收 anchorLink 和 index 兩個引數,anchorLink 是錨鏈接的名稱,index 是序號,從1開始計算 |
onLeave |
滾動前的回撥函式,接收 index、nextIndex 和 direction 3個引數: index 是離開的“頁面”的序號,從1開始計算; nextIndex 是滾動到的“頁面”的序號,從1開始計算; direction 判斷往上滾動還是往下滾動,值是 up 或 down。 |
afterRender | 頁面結構生成後的回撥函式,或者說頁面初始化完成後的回撥函式 |
afterSlideLoad | 滾動到某一水平滑塊後的回撥函式,與 afterLoad 類似,接收 anchorLink、index、slideIndex、direction 4個引數 |
onSlideLeave | 某一水平滑塊滾動前的回撥函式,與 onLeave 類似,接收 anchorLink、index、slideIndex、direction 4個引數 |
1. afterLoad(anchorLink, index)
afterLoad:function(anchorLink, index){
console.log("anchorLink:"+anchorLink+"\t index:"+index);
},
2. onLeave(index, nextIndex,direction)
onLeave:function(index,nextIndex,direction){
console.log("index:"+index+" nextIndex:"+nextIndex+" direction:"+direction);
},
3. afterRender()
afterRender:function(){
console.log("afterRender");
},
4. afterResize()
afterResize:function(){
console.log("afterResize"); },
5. afterSlideLoad(anchorLink, index, slideAnchor, slideIndex)
afterSlideLoad:function(anchorLink, index, slideAnchor, slideIndex){
console.log("anchorLink:" + anchorLink +" index:" + index +" slideAnchor:" + slideAnchor +" slideIndex:" + slideIndex );
},
6. onSlideLeave(anchorLink, index, slideAnchor, direction, slideIndex)
onSlideLeave:function(anchorLink, index, slideAnchor, direction, slideIndex){
console.log("anchorLink:" + anchorLink +" index:" + index +" slideAnchor:" + slideAnchor +" direction:" + direction +" slideIndex:" + slideIndex );
},