By serving on
Hello all
I would like to figure out how a set of images can be made to display in a specific area on a page without having to reload the page.
Here is a Drupal site using the exact method I would like to learn about:
http://www.sanyo.com.au/products/commercial-display-solutions/plasma/pdp...
When you click on the thumbnail you get the big image above it.
Is this the work of a specific module or is custom programing all the way?
Any wizard to explain this magic? :)
Serving
Comments
_
I only took a quick look at the source, but it looks like custom javascript/jquery to me (they also load the jquery ui library, but I don't believe that has a slide show module.
There are a number of modules that create slideshows of one sort or another-- using one of those (or even a jquery plugin) would be easier than writing it yourself.
Dynamic display block module
You can have a look at the dynamic display block module which has this functionality.
You can also have a look at the comparison of slideshow/rotator modules
Hope this helps you further.
Possible Direcion
Thank you guys for taking the time to look into this.
I found the exact jquery plugin that does exactly what is required.
t is called PikaChoose 2.7 http://plugins.jquery.com/node/4336/release
Now I have to figure out how to incorporate it in a products description page with attached images.
Also, there is Galleria. http://plugins.jquery.com/project/galleria
which has a Drupal module http://drupal.org/project/galleria
However, "You attach images to each Galleria node, and when you display the node...." Probably there is a way to include the galleria node inside the product node? The links sent by ppblaauw are a good place to start looking. Thanx ppblaauw.
PikaChoose is obviously the right and better tool for doing that exact thing Sanyo.com.au did for the products details page.
The question is can it be used in drupal without too much hassle?
Any ideas? :)
Serving
_
You can use any javascript and/or jquery you want with drupal. Id start with the documentation: Working with JavaScript and jQuery.
Possible Direction 2
I am not a javascript nor css expet by any stretch but, looking at the page source, it looks that the effect is handled in css not js.
I believe the effect can be replicated in these steps:
- create a cck content type "productdetails"
- workout the image uploads .. how the thumbs are generated or uploaded.
- Tabs module
- Theme where you images should be placed. control presentation in css
Am I missing anything?
Here is an extract from the source:
The css for the above section is in /sites/all/themes/sanyo/styles/global.css?C and it looks like :
If only it wasn't so much work :P
Serving