Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 439 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 439 Bytes

pagescroll

移动端全屏插件

使用方法

pageScroll({
    container: '.pages',
    direction: 'vertical',
    effect: 'ease',
    start: function (index) {
        console.log('start', this, index);
    },
    end: function (index, prevIndex, prevPage) {
        console.log('end', this, index, prevIndex, prevPage);
        this.classList.add('active');
        prevPage.classList.remove('active');
    }
});