I am looking to take the Cloud Carousel by Professor Cloud on http://www.professorcloud.com/mainsite/carousel.htm and make it scroll vertically. It seems like it would be a common enough request but I guess it's not because I've searched high and low and can not find the answer to my question. I can see that reflections may be an issue with a vertical scroll and if they are that's okay, I can do without them, I'd like an option to enable them if possible. Thanks for all of your help. (I need it to fit here: http://www.inspiritandintruth.com on the right bar.)

link|improve this question

Do you need a 3d solution, or would something like flowplayer.org/tools/demos/scrollable/vertical.html work better for you? – Nick Radford Jul 20 '11 at 1:01
Thanks, but I need something more visually appealing, preferably 3D, most preferably, like professor cloud's one. – Serj Sagan Jul 20 '11 at 1:07
And are you going to scale down your images significantly? The dimensions of that div are only 101x500, and the book images are, well, all over the place. – Nick Radford Jul 20 '11 at 1:16
Yeah sorry, I'was just trying to get a working draft up, that's why it's there, but I don't want to mess with the images until I know what size to make them so they fit well with the vertical scroll. – Serj Sagan Jul 20 '11 at 1:31
feedback

2 Answers

up vote 1 down vote accepted

So after digging around the code I finally figured it out. In case anyone ever attempts to do this on their own site here's what I got: At about line 260 of the non-minified version, you have two lines like this:

x = this.xCentre + (( (funcCos(radians) * this.xRadius) - (item.orgWidth*0.5)) * scale);
y = this.yCentre + (( (sinVal * this.yRadius)  ) * scale);

Just Change them to:

y = this.yCentre + (( (funcCos(radians) * this.yRadius) - (item.orgWidth*0.5)) * scale);
x = this.xCentre + (( (sinVal * this.xRadius)  ) * scale);

Notice how the x and y have been switched (3x)

You'll need to mess around with the initialization stuff especially the xPos and xRadius, here were my end results:

$("#bookscroll").CloudCarousel({            
    xPos: 11,
    yPos: 170,
    xRadius: 16,
    yRadius: 170,
    buttonLeft: $("#book-down"),
    buttonRight: $("#book-up"),
    altBox: $("#book-alt"),
    titleBox: $("#book-title"),
    mouseWheel: true,
    bringToFront: true,
    autoRotate: 'left',
    speed: 0.02,
    autoRotateDelay: 4000
});

Hope this helps someone, you can see it in action (and even more highly customized) at http://www.inspiritandintruth.com

link|improve this answer
feedback

I have the same problem. I found these two that have the same 3d effect and Do support vertical scrolling out of the box.

http://www.jacksasylum.eu/ContentFlow/

http://www.bkosborne.com/jquery-waterwheel-carousel

I guess you could either use one of them or look at their code to see how they did it.

Hope that helps.

B

link|improve this answer
I like the ContentFlow option, but it is 25k, whereas the ProfessorCloud option is only 1.5k, I messed around enough with the code to figure it out though... – Serj Sagan Jul 20 '11 at 20:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.