Does anyone know how to achieve the cover-flow effect using JavaScript to scroll through a bunch of images. I'm not talking about the 3D rotating itunes cover-art, but the effect that happens when you hit the space bar in a folder of documents, allowing you to preview them in a lightbox fashion.
-
Do you mean Coverflow (http://en.wikipedia.org/wiki/Cover_Flow) or Quick look (http://www.apple.com/macosx/features/quicklook.html)? – Gilean Sep 15 '08 at 22:46
-
7The description is defiantly of Quick Look (not Cover Flow).. – dbr Apr 26 '09 at 01:28
-
@rickyduck Yep. Might have something to do with bad spelling an a spell checker. – dbr Nov 28 '12 at 14:23
-
Still, it turned out to have a great range of answers on Coverflow, even recent ones! 9/10, would search again. – jalanb Jan 09 '20 at 16:00
14 Answers
http://www.jacksasylum.eu/ContentFlow/
- is the best I ever found. a true 'CoverFlow', highly configurable, cross-browser, very smooth action, has relections and supports scroll wheel + keyboard control. - has to be what your looking for!

- 3,198
- 2
- 35
- 51
-
Thank you zack, this is indeed the best of all coverflow libs I have seen in my evaluation! – Jonathan Weiss Aug 10 '10 at 07:25
-
3This looks great, but I'm really turned off by the fact that it requires you to tinker with the DOM and as such can't possibly degrade gracefully. – Johannes Gorset May 11 '11 at 09:22
-
1Thanks a lot for this link. I found a few others, notably this one - http://addyosmani.com/blog/jqueryuicoverflow/ - but ContentFlow is absolute the best bang for this buck. – brady gaster Aug 09 '11 at 13:37
-
Because this is manipulating height & width values & constantly listening to the mousemove event, this solution is very slow on mobile devices. A more performance optimized solution would be to use css3 transitions... It's built to do this natively. It wont work in ie6/7/8, but you could easily implement a graceful-degrade or polyfill to handle that. – 1nfiniti Feb 01 '12 at 16:40
-
-
Oldest "full" link in the Wayback machine is from [April, 2016](https://web.archive.org/web/20160416154800/http://www.jacksasylum.eu/ContentFlow/), and the code is archived as "ContentFlow_1.0.2.zip" [on GitHub](https://github.com/noviggo/ofertautomotriz/tree/master/ofertautomotriz). – jalanb Jan 09 '20 at 15:56
Not sure if you're talking about Coverflow (scroll through images) or Quicklook (preview files in lightbox), try editing your question.
Here's some JS Coverflow implementations:

- 14,708
- 10
- 45
- 52
-
4A cross-browser implementation with mobile support, http://luwes.co/labs/js-cover-flow/ – luwes Nov 29 '12 at 09:18
-
I can recommend @luwes implementation. Good to use and can also be used "offline", if you need to present something in HTML without an internet connection (as it was in my case the case). – Александр Фишер Jan 10 '13 at 12:06
I think this is what you want http://addyosmani.com/blog/jqueryuicoverflow/

- 8,335
- 18
- 63
- 92
I tried using the the Jack's Asylum cover flow but it wouldn't let me easily remove and re-add an entire coverflow. I eventually found http://finnrudolph.de/ImageFlow and not only is it more reliable, it's easier to hook into, uses less markup, and doesn't jitter when flipping through images. It's by far the best I've found, and I've tried several on this page.

- 1,325
- 12
- 18
There is an Apple style Gallery Slider over at http://www.jqueryfordesigners.com/slider-gallery/ which uses jQuery and the UI.
colorbox has such amazing features..loving it. Also like this one http://www.webappers.com/2008/03/05/galleria-simple-but-nice-jquery-image-gallery/

- 21
- 1
Is this what you are looking for?
"Create an Apple Itunes-like banner rotator/slideshow with jQuery" is an article explaining how you can make such effect using jQuery.
You can also view the live demo.

- 158,662
- 42
- 215
- 303

- 21
- 1
Check out momoflow: http://flow.momolog.info True coverflow effect, and performant on Webkit (Safari and Chrome) and Opera, ok on Firefox.

- 11
- 1
Just to let you all know, xFlow! has had some major work done on it and is vastly improved.
Go to http://xflow.pwhitrow.com for more info and the latest version.

- 52
- 1
i am currently working on this and planning on releasing it as a jQuery-ui plugin.
-> http://coulisse.luvdasun.com/
please let me know if you are interested and what you are hoping to see in such a plugin.
gr

- 9,147
- 2
- 48
- 38
Try Jquery Interface Elements here - http://interface.eyecon.ro/docs/carousel
Here's a sample. http://interface.eyecon.ro/demos/carousel.html
I looked around for a Jquery image carousel a few months ago and didn't find a good one so I gave up. This one was the best I could find.

- 5,181
- 3
- 25
- 19
the effect that happens when you hit the space bar in a folder of documents, allowing you to preview them in a lightbox fashion
Looks like a classic lightbox plugin is needed. This is my favorite jQuery lightbox plugin: http://colorpowered.com/colorbox/. It's easy to customize, etc.
This one looks really promising, and closer to the actual Apple coverflow effect than the other examples: