in a field tye cck when insert image multiple to have
a simple thumb
P
< t t t t >

when click on thumb photos t see in B the Photos selected;
and with < > move the tumbh ;

Comments

skessler’s picture

I am not 100% what you are trying to do but there are several modules in the media catagory that will help you.

http://drupal.org/project/Modules/category/67

Look through the modules and you should find one that does what you need as well as fine tune what you are trying to do.

Peace,
Steve

Steve Kessler
Denver DataMan -www.denverdataman.com

Steve Kessler

alb’s picture

some module I tested but not make that I would to do; pheraphs not exactly module or I not used good;
so I ask if someone have make similar solutions;

with cck field multiple image I would create this (after download images)
P
< t1 t2 t3 t4 >

P visualize image (medium size) of the thumbnail t selected (small image)

in my examplen there are 4 thumbs visible;
but with arrows < >, user can slide all the thumbs ;

Anonymous’s picture

Your english is very difficult to understand, but I think I have a few suggestions.

1.) You can associate multiple images with each node by using the imagefield module.
2.) You can resize the images to produce thumbnails using the imagecache module
3.) You can then cycle through the thumbnails by using the CCK Slideshow module

These modules all work well with Drupal 5.

-Mike Goodwin
http://www.not2us.net
http://www.redleafmedia.com

alb’s picture

1.) You can associate multiple images with each node by using the imagefield module.

ok this is for to insert multiple images inner a node

2.) You can resize the images to produce thumbnails using the imagecache module

ok this for manage size

3.) You can then cycle through the thumbnails by using the CCK Slideshow module

but I not want use slideshow for see the image;
I want simple to do this:
if I upload 12 images, to have a row with only 4 small images at time and with at right and left two bottons (arrow in my scheme botttom) for change this group of small images;
when I click on a small image to see in other row the big image.

the scheme is this
----- P -----
< t1 t2 t3 t4 >

P is the big (or medium size) image that one have selected in the row t1 t2 t3 t4;
in the row t1 t2 t3 t4 if one clcik on right button (>) will have t2 t3 t4 t5
if click 2nd time will have t3 t4 t5 t6 ...

so in P you se the big image and in row botom you decide which image see

jscoble’s picture

I'm not sure I understand what you are trying to say, but you may want to take a look at this:
http://drupal.org/node/144725. Just skip the thickbox part.

Search will turn up other possibilities too.

alb’s picture

1.) You can associate multiple images with each node by using the imagefield module.

ok this is for to insert multiple images inner a node

2.) You can resize the images to produce thumbnails using the imagecache module

ok this for manage size

3.) You can then cycle through the thumbnails by using the CCK Slideshow module

but I not want use slideshow for see the image;
I want simple to do this:
if I upload 12 images, want to have a row with only 4 small images at time and with at right and left two bottons (arrow in my scheme botttom) for change this group of small images;
when I click on a small image to see in other row the big image.

the scheme is this
----- P -----
< t1 t2 t3 t4 >

P is the big (or medium size) image that one have selected in the row t1 t2 t3 t4;
in the row t1 t2 t3 t4 if one click on right button (>) will have t2 t3 t4 t5
if click 2nd time will have t3 t4 t5 t6 ...
so in P you se the big image and in row botom you decide which image see

example
http://snipurl.com/1zu6m

jscoble’s picture

OIC. I haven't come across a way to do that. I've looked too.

Anonymous’s picture

alb’s picture

ok this is the row of the thumbs; but there isn't the
area P;
when click on thumbs a big image must be visualized in the area above P;

--- P --
< t t t t > jcarousel (thumbnails fluent)

is possible to use any code javascript or for every application made in javascript is necessary to
make a specific module (example for jcarousel there is its specific module) ?

regards alternative at javascript:
the thumbnails fluent can be a particular view and when one click on small image
in other view (P) is displayed the big image;
any idea?

ptitb’s picture

I was looking for the exact same thing as you.

After some research I found out that you could do this with
the Content Template module in combination with a little javascript.

The Content Template module can be found here:
http://drupal.org/project/contemplate

The javascript I use replaces an image source in a certain div when you click on an thumbnail.
You need to paste some code into the head of your page. More about the javascript I used can be found at
http://www.webdeveloper.com/forum/archive/index.php/t-64917.html

In combination with CCK ,Imagefield and Content Template I was able to create the exact lay-out as you wished for.

I used the following code in the Content Template body-output for my content type:

<div id="bigpic">
<img src="files/imagecache/work-full/files/work/<?php print $node->field_image[0]['filename'] ?>" id="bigimage">
</div>
<div id="thumbs">
  <?php foreach ((array)$field_image as $item) { ?>
    <img src="files/imagecache/work-thumb/files/work/<?php print $item['filename'] ?>" alt="print $item['alt'] ?>" title="print $item['title'] ?>" onclick="LoadGallery('bigimage','files/imagecache/work-full/files/work/<?php print $item['filename'] ?>');">
<?php } ?>
</div>

Obviously you have to replace some code in order to work with your settings.

I hope this helps you!

Kind regards,

Peter