I'll be using this page to track the development roadmap of the Waterwheel Carousel. It's a good way for me and you to keep track of what I'm working on. I will update it regularly as new features are added and everything related.
Next Release: Version 1.4
- Infinite cicular effect (so there are no edges/walls the user can hit)
- Make movement functions public, so the carousel can be moved programmatically (move left, right, reset, etc)
- Support for captions on images (overlayed on top, like the Feature Carousel)
- Item numbers/thumbnails to show what item is where, and for navigation like in the Feature Carousel
Feel free to suggest new features in the comment form below!
Comments
Carousel linking
Submitted by Carlos (not verified) on
Is it possible to link to a specific image in the carousel from an external page? For example, I have 5 different images in the carousel, 1 of the 5 is for a category of car tires - i have a landing page for car tires that i want to setup a link on so that if a user clicks on it, it will automatically put the car tires image in the main spot of the carousel...please let me know.
thanks!
This is not possible at the
Submitted by Brian on
This is not possible at the moment... and just thinking it over it wouldn't be a quick fix either. I think this is a good feature request for a future release though
Infinite circular effect
Submitted by Justin Wyllie (not verified) on
Hi
Thanks for this. It is great.
What we really want is the infinite circular effect. Do you have a release date for this? Or - is there some beta code available or steers as to how we could implement this ourselves?
Thanks
Justin Wyllie
Congratulation for the
Submitted by document manage... (not verified) on
Congratulation for the Carousel.
It would be useful if users can add or remove items from the "flow".
DIV instead images
Submitted by Alex (not verified) on
Hi! First of all, thank u for the great module! I have a question. Is that possible to substitute images to HTML content?
for example, scroll div's with some html content instead of pics?
i have tried to substitute all the IMG to DIV in jquery.waterwheelCarousel.js but it doesnt work.
thank u!
Carousel with a Video Element
Submitted by David (not verified) on
What would have to be done to enable the code to work with Flash objects such as YouTube videos?
More than 3
Submitted by Anonymous (not verified) on
Hi Brian,
Is it possible to increase the number of panels to 5 at one time instead of 3?
Thanks!
Update?
Submitted by dkpat (not verified) on
Hi Brian, I was just curious when you were planning on releasing version 1.4, or if you have any idea of a time frame at all. (I am waiting for the infinite loop personally)
I do not have a time frame
Submitted by Brian on
ahh... I see, Thank you for
Submitted by dkpat (not verified) on
ahh... I see, Thank you for the reply!
how can i do speed slow and maintain it's movement prperly.
Submitted by Anonymous (not verified) on
i want to down speed and maintain it's movement properly once i do speed slow that movement is disturbing of all images left to right not showing properly.
in ie is very slow
Submitted by pazama (not verified) on
Hello, thanks for script, i test this but in ie in very slow can i change or update anything for make this script more faster on ie?
thanks
speed fast
Submitted by Anonymous (not verified) on
hi dear ,
afcose you can contraol this speed for data.currentCenterItem here (data.currentSpeed = 830 here you can change it ) when we in 447 approx line if you give there min value than it will be faster.
abhishek
function itemAnimationComplete($item, newPosition, direction) {
// If the item moved to the center position, change the data indicating so
// We simply need to keep track of it so we can call the moved to center event
// once we are positive all of the animations are complete
if (newPosition == 0) {
data.currentCenterItem = $item;
}
// Decrement one from the amount of items that are animating
data.itemsAnimating--;
// If there are no more items left animating, that means that all the items within
// the carousel have finished animating
if (data.itemsAnimating == 0) {
// Decrement one from the amount of rotations the carousel has made
data.carouselRotationsLeft -= 1;
// The carousel has finished rotating and is no longer moving
data.currentlyMoving = false;
// If there are still rotations left in the queue, rotate the carousel again
if (data.carouselRotationsLeft > 0) {
rotateCarousel(direction, 0);
// Otherwise there are no more rotations and...
} else {
// Reset the speed of the carousel to original
//here need change data.currentSpeed = 830;
// Trigger custom 'moved to the center' event
if (data.currentCenterItem !== null)
options.movedToCenter(data.currentCenterItem);
}
}
}
but is the animation effect is slow
Submitted by pazama (not verified) on
The problem is the animation effect in other browser for example, firefox or chrome the animation is fluid but in the ie the animation in slow, any idea to solve this?
Which version of IE?
Submitted by Brian on
Show an other image when a new image come to the center
Submitted by David (not verified) on
Hi,
I want to know if its possible to have a div containing a bigger version of the image which is moved to the center of the carousel, then when a new one is moved to the center, the image in the div change to the new bigger version of the carousel's center image.
You can check the page i'm trying to get it on at http://dl.dropbox.com/u/19671984/site_web/site/affiche.html
My goal is to have the bigger image to the right of the page, where theres actually a other carousel (this one will be removed). The bigger image would be a bigger version of the present image that is to the center, so people can clearly see the artwork. Then when they make the carousel move, the new image to come to the center will activate the script (or whatever can be use to switch image) to make the big image switch to the corresponding artwork.
I'm fairly new at scripting, and I had quite a hard time setting up the carousel to work as I wish, but I love it so much that I don't want to get another script to replace it...
Thanks for helping me,
David
Yes David, this is possible,
Submitted by Brian on
Add/Remove
Submitted by Roberto (not verified) on
Congratulation for the Carousel.
It would be useful if users can add or remove items from the "flow".
What do you think about?
Could you explain further how
Submitted by Brian on
Hi.. Waterwheel Carousel in
Submitted by Anonymous (not verified) on
Hi..
Waterwheel Carousel in Firefox 4 is not working. Is there an update planned?
Thanks a lot for your great effort!!
Hmm it's been working okay
Submitted by Brian on
This plug-in would be almost
Submitted by jQuery lover (not verified) on
This plug-in would be almost perfect for me if there were captions similar to the implementation of the Feature Carousel which look very sharp.
are there missing files?
Submitted by jQuery lover (not verified) on
is the js folder missing from the 1.2 download? I don't see it and the code doesn't work
Active slide class?
Submitted by Stanton (not verified) on
It would be useful if the active slide has a class which would allow me to target it with CSS (if there's an option to do this already please let me know)
this is what I'm tinkering with at the moment (webkit only atm!) demo
Ahh absolutely. Will add to
Submitted by Brian on
Sharing roadmap
Submitted by Cobra (not verified) on
Hi Brian,
Great idea to share your roadmap. I'm very happy to see circular option is for next realease ;-)
Also, I managed to simulate the same kind of behavior than the Feature Carousel, with displaying a subtitle DIV below the image once centered: but to achieve this, I had to add a new callback "movingToCenter" called at the beginning of "rotateCarousel": there, I hide the subtitle DIV. In "movedToCenter", I change its content and show it again. Maybe it could be nice if you add such callback in your next release?
Yes I can add that in.
Submitted by Brian on
Add new comment