Slideshow with Smooth Animated Transition: jQuery Blinds
Posted on March 11, 2010, Filled under jQuery,
Bookmark it
jQuery Blinds is a simple, effective, and customizable slideshow plugin shared by Little Web Things. It is very easy to install. You just have to put the list (UL) with the images (each LI containg the IMG tag with the right SRC attribute) inside a main class (.slideshow) then call the plugin:
HTML Code
<div class="slideshow"> <ul> <li><img src="lemons/1.jpg" alt="lemon" /></li> <li><img src="lemons/2.jpg" alt="lemon tea" /></li> <li><img src="lemons/3.jpg" alt="splashing lemon" /></li> <li><img src="lemons/4.jpg" alt="salad with lemon" /></li> <li><img src="lemons/5.jpg" alt="lemonade!" /></li> <li><img src="lemons/6.jpg" alt="sliced lemon" /></li> <li><img src="lemons/7.jpg" alt="dripping lemon" /></li> </ul> </div>
JavaScript Code
$(window).load(function () { $('.slideshow').blinds(); })
Features include:
- Smooth animated transition
- Customizable animation orchestration
- Multiple instances on the same web page
- jQuery compatible (plugin)
- Unobtrusive JavaScript
- Source: http://www.littlewebthings.com/projects/blinds/
- Tested in: Firefox 3.5, IE 8, IE 7, IE 6, Opera 10, Chrome 4, Safari 4
Do you wish to receive the latest updates as soon as they are posted? Get our RSS Feed or Subscribe to the Newsletter!
- March 11, 2010
- article by Gabriel C.
- Leave a reply!
Related Posts
Display photos as slideshow with strip effects: jqFancyTransitionsat March 3, 2010
Image Slider with Unique Transition Effects: jQuery Coin Sliderat April 7, 2010 with 1 comment
Move Elements into an Interactive Area: Roundabout jQuery Pluginat December 23, 2009
Free Flash Simple to Use Image Gallery with Fade In/Out Effectat November 22, 2009 with 1 comment
Elastic jQuery Plugin Makes Your Textareas Grow Facebook Styleat August 21, 2009 with 1 comment

