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

jquery.preload

v1.1.1

Published

Multi-functional image preloader plugin for jQuery

Downloads

21

Readme

jQuery.Preload

Description

This is an advanced multi-functional preloader, that has 4 modes integrated. Each mode suits a different, common situation.

Demo

You can see the demo at http://demos.flesler.com/jquery/preload/

Installation

The plugin requires jQuery 1.8 or higher and jquery.scrollTo.

Via bower:

bower install jquery.preload

Via npm:

npm install jquery.preload

Manually: You can download the latest stable version from the releases page.

Modes / Settings

The modes are:

  • URL: Preload a JS array of static URLs. Related settings:
    • base: This string is prepended to each URL in the array.
    • ext: This string is appended to the end of each URL in the array.
  • Rollover: Preload based on DOM images, slightly modifying their src. Can be used for rollovers, or for image-thumb. Related settings:
    • find: String or regex that matches part of the srcs.
    • replace: Replacement to the matched part, to generate the alternate URL.
  • Placeholder: Take regular images and set a placeholder image while they load. Show each original image when fully loaded. Allows sequential loading with a threshold. Related settings:
    • placeholder: URL of the temporal image shown while loading.
    • notFound: Optional image to show if a given image failed to load.
  • Link: Preload the images that appear in the href of the given links. Related settings:
    • srcAttribute: You can specify an attribute where the URL will be present in the DOM elements, otherwise elem.src || elem.href is used

Since 1.0.6, you can combine these 2 modes, for another common use. If you have many images in a page, you might want to load a lighter version of them first, and then sequentially load and replace the real images. To achieve this, use the light versions in the html, then preload the heavy ones as if they were rollover images(find+replace). If you set 'placeholder' to true, each preloaded image will be set instead once it loads. There's also a threshold setting, that determines how many images are preloaded simultaneously, it is 1 by default.

Callbacks

The plugin also provides 3 callbacks to interact with the image URLs during the preloading process. The callbacks get a hash of data, with details of the related image and global information. The callbacks are:

  • onRequest: Called when requesting a new image.
  • onComplete: Called when a request is complete(loaded or failed).
  • onFinish: Called when all images are fully preloaded.

Data received by callbacks

The hash of data received by the callbacks, contains the following information:

  • loaded: how many images were preloaded successfully.
  • failed: how many images failed the preloading.
  • next: 0-based index of the next image to preload.
  • done: amount of preloaded images ( loaded + failed ).
  • found: whether the last image could be preloaded or not.
  • total: amount of images to preload overall.
  • image: URL of the related image.
  • original: The original source related to this image.

Note that threshold and the callbacks, are not related to any mode, and can be useful for any of them.