blear.ui.fullpage

1Introduction

2Example

<div id="demo">
    <div>section 1</div>
    <div>section 2</div>
    <div>section 3</div>
</div>
var Fullpage = require('blear.ui.fullpage');

new Fullpage({
    el: '#demo'
});

3Static

3.1.defaults

  • 类型:Object
  • 说明:默认配置

3.2.defaults.el

  • 类型:HTMLElement | String
  • 说明:元素

3.3.defaults.slideAnimation(el, to, done)

  • 类型:Function
  • 说明:滚动动画
  • 默认:空动画,需要业务层自己实现,参见blear.classes.animation

4new Fullpage(options)

实例化一个单页滚屏 UI 组件,options 为入参,默认值为 .defaults

5Prototype

5.1#destroy()

销毁实例。

6Events

事件继承于 blear.ui.slider

7Dependencies

8Reference