Extremely easy to use jQuery plugin that allows you to make simple sliders with auto playing and hover managing.
By default, featurify will just slide over your list items. If you hover the featurified div, animation will stop.
Of course, you can customize it a little by chaging directions and speed
And if you add some CSS and images, it becomes magical!
Easy
Fast
Cost savingBasically you just have to create a div, an ul, a li :
<div id="features"> <ul> <li>Something really cool</li> <li>Another thing cooler</li> <li>Final awesome thing</li> <ul> </div>
And then, just do :
$("#features").featurify();
//or if you want some options
$("#features").featurify({ pause:7000, transition: 200 });
pause // time in milleseconds between each slide transition // time in milleseconds that will take the sliding effect directionIn // left: -1 / right: 1. Direction from where will come the next slide directionOut // left: -1 / right: 1. Direction to where will go the current slide
This project is distributed under Apache 2 License.