GithubHelp home page GithubHelp logo

viewport's Introduction

ViewPort is a plugin for jQuery that helps you detect whether a given set of DOM nodes are visible within the browser viewport at any given moment.
This plugin attaches scroll, resize, and click event handlers to the window node. Because of this, there is an optional dependency on Ben Alman's Throttle/Debounce jQuery plugin.

Example of how to use ViewPort:

function myHandler(e, data) {
    console.log(data); //will return true or false depending on whether the element is in view
}            

$('.thumb').viewPort({
                 buffer: 300      
                ,delimitRate: 200
            }, myHandler);

* buffer is the amount of additional padding around the viewport that will also be considered visible in the viewport. This is useful if you are using animations or unloading elements and want your transition to feel smooth.
* delimitRate is the amount of time in milliseconds that the scroll, resize, and click event handlers on window will be throttled if you are using Ben Alman's Throttle plugin. If you are not using this plugin, your event handlers will not be throttled.
* callback is your own event handler for the node. a data object is passed back to the handler which returns true or false depending on whether the element is within the viewport.

viewport's People

Contributors

20after4 avatar aimee-ault avatar goodcodeguy avatar

Watchers

 avatar  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.