fullPage.js 是一个基于 jQuery 的插件,它能够很方便、很轻松的制作出全屏网站,主要功能有:
支持鼠标滚动
支持前进后退和键盘控制
多个回调函数
支持手机、平板触摸事件
支持 CSS3 动画
支持窗口缩放
窗口缩放时自动调整
可设置滚动宽度、背景颜色、滚动速度、循环选项、回调、文本对齐方式等等
兼容 jQuery 1.7+。
IE8+
Chrome
Firefox
Opera
Safari
选项
类型
默认值
说明
verticalCentered
字符串
true
内容是否垂直居中
resize
布尔值
false
字体是否随着窗口缩放而缩放
slidesColor
函数
无
设置背景颜色
anchors
数组
定义锚链接
scrollingSpeed
整数
700
滚动速度,单位为毫秒
easing
easeInQuart
滚动动画方式
menu
绑定菜单,设定的相关属性与 anchors 的值对应后,菜单可以控制滚动
navigation
是否显示项目导航
navigationPosition
right
项目导航的位置,可选 left 或 right
navigationColor
#000
项目导航的颜色
navigationTooltips
空
项目导航的 tip
slidesNavigation
是否显示左右滑块的项目导航
slidesNavPosition
bottom
左右滑块的项目导航的位置,可选 top 或 bottom
controlArrowColor
#fff
左右滑块的箭头的背景颜色
loopBottom
滚动到最底部后是否滚回顶部
loopTop
滚动到最顶部后是否滚底部
loopHorizontal
左右滑块是否循环滑动
autoScrolling
是否使用插件的滚动方式,如果选择 false,则会出现浏览器自带的滚动条
scrollOverflow
内容超过满屏后是否显示滚动条
css3
是否使用 CSS3 transforms 滚动
paddingTop
与顶部的距离
paddingBottom
与底部距离
fixedElements
normalScrollElements
keyboardScrolling
是否使用键盘方向键导航
touchSensitivity
5
continuousVertical
是否循环滚动,与 loopTop 及 loopBottom 不兼容
animateAnchor
normalScrollElementTouchThreshold
名称
moveSectionUp()
向上滚动
moveSectionDown()
向下滚动
moveTo(section, slide)
滚动到
moveSlideRight()
slide 向右滚动
moveSlideLeft()
slide 向左滚动
setAutoScrolling()
设置页面滚动方式,设置为 true 时自动滚动
setAllowScrolling()
添加或删除鼠标滚轮/触控板控制
setKeyboardScrolling()
添加或删除键盘方向键控制
setScrollingSpeed()
定义以毫秒为单位的滚动速度
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个参数
<a target="_blank" href="http://www.dowebok.com/demo/2014/77/">演 示</a>
<a target="_blank" href="http://pan.baidu.com/s/1i3gGH3v">下 载</a>