npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

inviewcallback

v1.0.4

Published

Jquery-ui widget to callback when element is visible on the screen.

Downloads

11

Readme

inViewCallback.js

Is a jquery-ui widget ( without any ui ) that will call the inView callback in options ( or trigger an event ) when the plugin element has entered the view and the outOfView callback/event when out of view.

In view and out of view

There are two ways that it can come into view. The first is the logical, when it is out of view and comes into view. The second is dependent upon the option initialInView. If initialInView is true and is in view then the callback will be called ( and it will need to go out of view and back in for the callback to be possibly called again.). If it is out of view then it needs to come into view. If initialInView is false and is in view then it will need to go out of view and come into view again. If it is out of view then it will need to come into view.

The plugin will call the outOfView callback when it is either initially out of view ( initialInView does not affect this ) or when is in view and goes out of view.

Number of times the callbacks will be called

If the numTimes option has not been set then it is infinite, otherwise this option value restricts the number of callbacks that will be received. Note that numTimes is compared against the number of times the inView callback is called. When the numTimes has been reached by being in view there will still be the possibility of a final outOfView callback.

The numTimes option can be changed at any time.

Usage

Jquery and jquery-ui need to be present.

With callback

initialInView defaults to true. If the element is in view the callback will be called.

$('#someElement').inviewcallback(
    {
        inView:function(event,data){
            //this will be called indefinitely - use data.count if desired
        }
    }
)

With event

Here the element will have to be out of view and come in to view for the event to be raised. Be sure to bind before applying the plugin.

var pluginElement=$('#someElement').bind("inviewcallbackcallback",function(event,data){
    //use data.count if desired
    //will be called indefinitely until...
  }).inviewcallback(
    {
        initialInView:false
    }
)

//changing the option at a later date
pluginElement.inviewcallback('option',"numTimes",1);

Overriding the isOnScreen Calculation

Currently the border box of the plugin element determines if the element is in the view port.

JQuery UI 1.9 added the ability for widgets to be redefined. By using this technique it was possible to test the widget easily.

$.widget("tonyhallett.inviewcallback", $.tonyhallett.inviewcallback, {
    _isOnScreen:function isOnScreen (el) {
        //your implementation
    }
});

Tests

The tests folder contains test.html and tests.js for testing in QUnit.