Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

mscroll

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mscroll

mScroll pull down refresh, pull up load more.

latest
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

mScroll -- pull down refresh and pull up load more. only use in Mobile devices

NPM

  • pull down update
  • pull up load more

#use document

online demo (only work in mobile devices)

https://kangaoxiaoshi.github.io/mscroll/

install

  npm install mscroll --save

useage

1. npm run build

1. browserify mscroll.js --deubg > bundle.js

1. in browser use bundle.js

##dependency

zepto-modules

API

.pull

  var Pull = mScroll.pull;
  var refresh = new Pull ('.js-content', {
    msgElement: '.js-msgwrap',
    msgs: ['下拉刷新.....', '释放刷新'],
    distance: 10,
    start: function () {
      //console.info('start');
    },
    move: function () {
      //console.info('move');
    },
    end: function () {
      //console.info('end');
    },
    onRefresh: function () {
      let ul = document.querySelector('.js-ul');                    
      let random = 1; 
      // after refresh do something you want
      setTimeout(() => {           
        this.backTop();
        ul.innerHTML = '';
        for (let i = 0; i< 25; i++) {
          random = (Math.random() * (20 - 1) + 1).toFixed(0);
          ul.innerHTML +=`<li>
                          我是刷新后内容${random}
                         </li>`;
        }
      }, 1000);
    }
  });
  • {msgElement} required selector or document.element where to place the refresh state message.
  • {msgs} default ['下拉刷新.....', '释放刷新'] when pulling display msg.
  • {distance} default 40px msgElement height.
  • {start} function when start pull fire this function.
  • {move} function when pulling fire this function.
  • {end} function when finish pull fire this function.
  • {onRefresh} function after pull do what you want in this function.

.more

  var load = new More ('.js-content', {
    main: '.js-content',        
    more: function () {
      //load more function
      console.log('load more');
    }
  });
  • {.js-content} required part of main this.el is $('.js-content').
  this.$main.off('scroll').on('scroll', _.throttle((e) => {
    if (this.el && this.el.getBoundingClientRect().bottom < document.body.clientHeight + 25) {        
      this.$el.trigger('load-bottom');        
    }
  }, 200));
  • {main} required selector or document.element which to add scroll.

Keywords

pull down refresh

FAQs

Package last updated on 26 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts