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

redshift-jquery

v3.1.0

Published

jQuery plugin for Redshift

Downloads

10

Readme

jQuery plugin for Redshift

Plugins for aiding Redshift use with jQuery selections. When any plugin is called, we loop through each element in the jQuery selection and check if it has an associated Action. If it doesn't, we create one.

When an Action is created using a jQuery plugin, we automatically overwrite the scope property with its associated jQuery element. This means that within callbacks, this will refer to its jQuery object.

Install

NPM + Browserify (recommended)

First install the Redshift jQuery plugin in your project root.

$ npm install redshift-jquery

Then include in your module using require().

var $redshift = require('redshift-jquery');

Because we're now in the modular world, the Redshift jQuery plugin won't automatically have visibility to jQuery or Redshift. So, we run its .load() method and pass through our jQuery and Redshift references, like so:

$redshift.load(jQuery, redshift);

File include

Download the latest redshift-jquery.global.min.js from http://github.com/InventingWithMonster/redshift-jquery and include it in your HTML document with a script tag.

Important: Make sure you load the plugin file after jQuery and Redshift. When the plugin file loads, it will check the global scope for window.jQuery and window.redshift and use those to run .load().

<script src="/path/to/redshift-jquery.global.min.js"></script>

Use

After loading the jQuery plugins for Redshift, you'll have access to .action(), .play(), .track() and .run() methods on any jQuery selection.

Because a jQuery selection might consist of multiple elements, and each element is given its own Action, the return value will be an Array if more than one Action is fired.

.action()

The main interface to an element's Action. Calling .action() without arguments will return that element's Action.

By passing through a string of an Action method, we will call that method. Subsequent arguments will be passed through to the method.

// Single element example
var $single = $('#myElement');

$single.action(); // Creates and returns a new Action with scope property = $('#myElement')
$single.action('setProp', 'foo', 'bar'); // Sets Action property 'foo' to 'bar', returns element Action
$single.action('getProp', 'foo'); // Returns 'bar'

// Multiple element example
var $multiple = $('.myElements');

$multiple.action(); // Returns [Action, Action, ...]
$multiple.action('setProp', 'foo', 'bar'); // Sets all Actions property 'foo' to 'bar', returns [Action, Action, ...]
$multiple.action('getProp', 'foo'); // Returns ['bar', 'bar', ...]

.play(), .track(), .run()

Play, track and run are the primary methods for making Actions actually do stuff, so they each have a shorthand plugin. These act exactly like .action() except the function name serves as the first argument (the method name). So you can call them exactly as you would on a normal Action, ie:

$single.play({
    values: {
        x: {
            to: 100
        }
    },
    ease: 'easeInOut',
    onChange: function (output) {
        this.css('transform', 'translate3d(' + output.x + 'px,0,0)');
    }
});