Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
Why not customize it yourself? Take a simple plugin like jCarousel Lite and put some custom code into a callback so a new image appears every time. Put some click events on each item in the slide.
In jCarousel Lite, the callback works like this:
Code:
$("#slide").jCarouselLite({
speed: 500,
btnNext: "#next",
btnPrev: "#prev",
afterEnd: function(visible) {
//some code goes here after the slides have stopped
}
});
The key is that the (visible) variable has the three DOM nodes that are visible in the slide. This allows you to read any properties about them that you wish. If you name your large images in a uniform manner relative to the small slide images, you could easily switch out a large image by just reading the SRC attribute of the middle slide or whatnot.
Here's an example where I did something very similar to what you're after, if you care to dig through my code: http://wayfarerweb.com/portfolio.php
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
Last edited by wayfarer07; 02-06-2010 at 09:47 AM..
|