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-dragon

v0.5.1

Published

It's another draggin' plugin!

Downloads

7

Readme

jQuery.fn.dragon

It's another draggin' plugin!

Why did I waste a weekend building another dragging plugin, when jQueryUI has a perfectly useful plugin to do the same thing? Because it wasn't fast enough for my needs. jQueryUI's implementation has a lot of abstraction, and a reeeeeally long call stack if you look at the breakpoints on your event handler callbacks. In most cases this isn't a problem, but for the apps I build, performance matters. Event handler callbacks can be expensive enough to begin with, and burying them in a great big call stack isn't going to help.

Additionally, I didn't need all of the features that jQueryUI's $.fn.draggable plugin provides. They're great, but I don't want to load code I don't need. This plugin is independant of any widget or core architecture, just plop it on your page after jQuery and you're good to go.

Dragon is divided up into two main components: $.fn.dragon and $.fn.dragonSlider. The former handles general dragging functionality, and the latter creates a handy slider widget. $.fn.dragonSlider depends on $.fn.dragon, and they are in separate files under src/.

There's a very good chance that Dragon isn't a good fit for your app. But it was a good fit for mine, and perhaps you have a similar need for a lightweight, minimalist dragging plugin. Bon Appétit!

$.fn.dragon

Make an element draggable with this:

$('.selector').dragon(options);

options is an object. It can be omitted.

Options:

  • noCursor: A boolean. False by default. If true, the mouse cursor icon isn't changed to move when the element is dragged.
  • axis: A string. If this is "x" or $.fn.dragon.AXIS_X, the element can only be dragged along the X axis. If it is "y" or $.fn.dragon.AXIS_Y, the element can only be dragged along the Y axis.
  • within: A jQuery'ed element. A containing element to constrain the movement of the dragon'ed element within.
  • handle: A jQuery object or string referencing a child of the dragon'ed element. This element will act as the "handle" for dragging the dragon'ed element.

Events:

These go in the options object as well. Separated from the above list for clarity.

  • dragStart: A function. Fires when dragging begins.
  • drag: A function. Fires for each tick of the drag.
  • dragEnd: A function. Fires when dragging ends.

Important note! Only one handler can be bound per event. This is done on purpose, as I didn't want to sacrifice performance for supporting multiple event handlers.

$.fn.dragonDisable

Disable Dragon temporarily.

$.fn.dragonEnable

Re-enable Dragon after calling $.fn.dragonEnable.

$.fn.dragonSlider

To create a slider, load src/css/jquery.dragon-slider.css, src/jquery.dragon-slider.js, and do this:

$('.container').dragonSlider(options);

options is an object. It can be omitted.

Options:

  • drag: A function. Fires every tick that the user drags the slider handle for.
  • width: A number. How many pixels wide the slider should be.

$.fn.dragonSliderGet

var slider = $('.container').dragonSlider();
slider.dragonSliderGet();

Returns the value of the slider. This value is normalized (between 0 and 1).

$.fn.dragonSliderSet

var slider = $('.container').dragonSlider();
slider.dragonSliderSet(0.5, false);

Sets the value of the slider. Supplied value should be normalized (between 0 and 1). The second parameter is a boolean. Set it true to fire the drag event handler that you set, or set it to false or omit it to prevent it from being fired.

Compatibility

  • IE6 and above. Hooray!
  • Modern browsers.

Setup

Install dependencies to make changes to Dragon:

$: npm install