Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

hoverAnim 1.0.1


/*
* hoverAnim (1.0) // 2008.02.10 //
*
* REQUIRES jQuery 1.2.3+ , hoverIntent
*
* Copyright (c) 2008 TrafficBroker
* Licensed under GPL and MIT licenses
*
* hoverAnim make an animation on over, and return to the original position on out.
*
* Sample Configuration:
* $('#element').hoverAnim({width: 500},{speed: 500});
*
* More Config Options:
* speed: Speed for the animation // default: 150
* easing: "swing", // By default jQuery only provide linear and swing easing.
* sensitivity: Sensitivity threshold (must be 1 or higher) // default: 3
* interval: Milliseconds for onMouseOver polling interval // default: 200
* timeout: Milliseconds delay before onMouseOut // default: 300
*
* We can override the defaults with:
* $.fn.hoverAnim.defaults.speed = 500;
*
* @param properties An object with the animation parameters
* @param settings An object with configuration options
* @author Jesus Carrera
*/