Coder Social home page Coder Social logo

jquery-heaven-scroll's Introduction

HeavenScroll

Heaven scroll provides an InfinateScroll with amazing performance and experiance improvements

Pre-requisites

Install the package dependencies by running the following command

npm install

Development

npm run start

Then view this project at http://localhost:8080

Demo

To create a packagable demo, use the following command.

npm run build

This will create a demo project in the dist folder

Publishing

NODE_ENV=production npm run build
npm publish

How to use

Install plugin

npm install jquery-heaven-scroll

This plugin requires some information to be passed to it in order to work.

Option 1 using arguments values (will overwrite option 2 values)

One way to send this information is passing an array as argument to the method, like:

/**
 * Returns html to be written inside .pageSingle
 * @param {object} options
 * @param {string} options.pageClassName
 * @param {integer} options.pageNumber
 * @param {function} cb
 */
function productTileFetcher(options, cb) {
	// (...)
}

var $pagesContainer = $('.your-selector-classname');

$pagesContainer.heavenScroll({
		maxPagesNumber: 3, // maximum number of pages shown
		pageHeight: 1584, // page height
		startPage: 1, // page to start (gets overwritten if url has query parameter)
		endPage: 10,
		pageClassName: 'pageSingle', // page class
		urlQueryParamName: 'startPage', // page to start url query parameter name
		loadPageFunction: productTileFetcher  // function that returns the html to be shown
    });

NOTE: the loadPageFunction value must be passed in option 1.

Option 2 using data attributes values

Another way to send this information is by using data-attributes in the $pagesContainer element, like:

<div class="pagesContainer"
	 data-max-pages="3"
	 data-page-height="1584"
	 data-start-page="1"
	 data-end-page="10"
	 data-page-class-name="pageSingle"
	 data-url-query-param-name="startPage">
</div>

NOTE: For an example check the demo folder

jquery-heaven-scroll's People

Contributors

comum avatar muhammaddadu avatar

Stargazers

Sophie Vanderveken avatar

Watchers

James Cloos avatar Sophie Vanderveken avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.