Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 378 Bytes

File metadata and controls

18 lines (15 loc) · 378 Bytes

splickjs

Simple and easily extensible lightweight javascript library.

usage

Splick works like jquery but faster and easier to use.

Setup the variable for your library:

var $ = function (selector) { return new DOM(selector); };

Animate a fdiv on click

$("#click-me").click(function(){ $(this).animate({ "opacity": 0 }, 1000); }); });