Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 465 Bytes

File metadata and controls

9 lines (7 loc) · 465 Bytes

Hoover

Hoover is a tiny jQuery/Zepto plugin for triggering delayed hover events. Similar to hoverIntent, but under 1k minified. This plugin is based on a gist from Thomas Fuchs.

$('.button').hoover({in: 500, out: 250})
            .on('hooverIn', function() { console.log('hovering in') })
            .on('hooverOut', function() { console.log('hovering out') })