什么是最好的jQuery“点击缩略图并更改主图像”模块?

时间:2009-03-04 21:42:11

标签: jquery gallery thumbnails

这就是我所拥有的(所有动态生成,如果这有所不同):

  • 图像列表
  • 每张图片的标题
  • 每张图片的缩略图

页面应加载一个完整尺寸的图像和所有缩略图。当用户单击缩略图时,全尺寸图像会显示带有标题的新图像。如果他们点击另一个缩略图,图片(和标题)会再次更改。

这不是很复杂。几个月前我在一起解决了一个解决方案,但我需要再次这样做,我正在看这个糟糕的代码,并认为必须有一个更好的方法(并且知道jQuery,其他人已经完成了它,并完成了好吧)。

思考?链接?

谢谢!

8 个答案:

答案 0 :(得分:47)

这里的大部分答案都像用正典拍摄苍蝇!!

$('#thumbs img').click(function(){
    $('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
    $('#description').html($(this).attr('alt'));
});

这就是你所需要的...... 4行代码。

看这里:gallery-in-4-lines

答案 1 :(得分:3)

这是一个看起来很漂亮并且用jQuery编写的:Photo Slider

这是另一个我更喜欢的东西: Galleria

答案 2 :(得分:3)

答案 3 :(得分:2)

建立krembo99's answer he linked here之后,我想分享我的解决方案,因为当我的客户请求了这样的功能时,我已经上传了数百张照片。考虑到这一点,通过在提供的代码中添加一些额外的行,我能够获得适合我的参数的解决方案。

我也在处理较小的图像,所以我没有必要经历创建小型和小型图像。同一文件的大版本。

$('.thumbnails img').click(function(){

 // Grab img.thumb class src attribute
 // NOTE: ALL img tags must have use this class, 
 // otherwise you can't click back to the first image.

 var thumbSrc = $('.thumb').attr('src');

 // Grab img#largeImage src attribute
 var largeSrc = $('#largeImage').attr('src');

  // Use variables to replace src instead of relying on file names.
  $('#largeImage').attr('src',$(this).attr('src').replace(thumbSrc,largeSrc));
  $('#description').html($(this).attr('alt'));

});

这是我的HTML外观。

    <img src="path/to/file1.jpg" id="largeImage" class="thumb">
    <div id="description">1st image Description</div>

    <div class="thumbnails">

     <img src="path/to/file1.jpg" class="thumb" alt="1st image description">
     <img src="path/to/file2.jpg" class="thumb"alt="2nd image description">
     <img src="path/to/file3.jpg" class="thumb" alt="3rd image description">
     <img src="path/to/file4.jpg" class="thumb" alt="4th image description">
     <img src="path/to/file5.jpg" class="thumb" alt="5th image description">

    </div>

答案 4 :(得分:1)

http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/

在jQuery中可以使用9个不同照片幻灯片的页面

答案 5 :(得分:1)

查看我的galleria实施:Garden design Landscaper in Essex Gallery

答案 6 :(得分:0)

尝试Galleriffic,它拥有您需要的一切。

答案 7 :(得分:0)

其中许多脚本已过时,因此对我不起作用,另外还需要一组不同的缩略图图像。我经过认真的摸索,发现很轻的东西是纯js,不需要jquery。

<html>
<head>
<style>
* {margin:0; padding:0; border:0; outline:0; box-sizing:border-box;}
.image, .thumb {width:100%; height:100%;}
#product-image-wrap {position:relative; float:left; width:250px; height:325px; margin:50px 0 50px 50px;}
#product-image {position:relative; float:left; width:250px; height:250px; border:1px solid #d0d0d0; padding:20px; cursor:pointer; display:inline-block; transition:0.9s;}
#product-image:hover {opacity:0.7;}
.product-image-thumbnail {position:relative; float:left; width:55px; height:55px; border:1px solid #d0d0d0; margin-top:20px; padding:10px; cursor:pointer; display:inline-block; transition:0.9s;}
.product-image-thumbnail:hover {opacity:0.7;}
.product-image-thumbnail-spacer {position:relative; float:left; width:10px; height:130px;}
</style>

</head>
<body>

<div id='product-image-wrap'>

<!-- Main -->
<div id='product-image'><img src='http://workshop.rs/demo/gallery-in-4-lines/images/image_01_large.jpg' id='0' class='image' alt='image 0'></div>

<!-- Thumbs -->
<div class='product-image-thumbnail'><img src='http://workshop.rs/demo/gallery-in-4-lines/images/image_01_large.jpg' id='1' class='thumb' onclick='preview(this)' alt='image 0'></div>
<div class='product-image-thumbnail-spacer'></div>
<div class='product-image-thumbnail'><img src='http://workshop.rs/demo/gallery-in-4-lines/images/image_02_large.jpg' id='2' class='thumb' onclick='preview(this)' alt='image 2'></div>
<div class='product-image-thumbnail-spacer'></div>
<div class='product-image-thumbnail'><img src='http://workshop.rs/demo/gallery-in-4-lines/images/image_03_large.jpg' id='3' class='thumb' onclick='preview(this)' alt='image 3'></div>
<div class='product-image-thumbnail-spacer'></div>
<div class='product-image-thumbnail'><img src='http://workshop.rs/demo/gallery-in-4-lines/images/image_04_large.jpg' id='4' class='thumb' onclick='preview(this)' alt='image 4'></div>

</div>

<!-- Javascript -->
<script>
var lastImg = 1;
document.getElementById(lastImg).className = "thumb selected";
function preview(img) {
document.getElementById(lastImg).className = "thumb";
img.className = "thumb selected";
document.getElementById(0).src = img.src;
lastImg = img.id;
}
</script>

</body>
</html>

https://jsfiddle.net/uo6js5v7/