gpt4 book ai didi

javascript - 用更大的图像交换缩略图?

转载 作者:行者123 更新时间:2023-11-28 02:44:07 24 4
gpt4 key购买 nike

我有一张 400 像素 x 400 像素的大图像和下面 3 张较小的图像,每一张都是 100 像素 x 100 像素。

当您单击其中一张缩略图时,它是否可以与较大图像交换,从而实质上放大它?

最佳答案

编辑:

HTML:

<div id="imgThumbs">
<a href="#" class="showImg"><img src="img1-thumb.jpg" width="100" height="100" alt="Image 1" /></a>
<a href="#" class="showImg"><img src="img2-thumb.jpg" width="100" height="100" alt="Image 2" /></a>
<a href="#" class="showImg"><img src="img3-thumb.jpg" width="100" height="100" alt="Image 3" /></a>
</div>

<div id="imgHolder"></div>

CSS:

#imgThumbs {  
overflow: hidden;
margin: 20px auto;
width: 366px;
text-align: center;
}

.showImg {
width: 100px;
padding: 10px;
float:left;
border: 1px solid #fff;
border-radius: 5px;
}

#imgHolder {
border-top: 5px solid #bbb;
padding: 20px;
margin: 0 auto;
width: 80%;
}

.active {
border: 1px dashed #aaa;
background-color: #f4f4f4;
}

jQuery:

$('.showImg').hover(function(){        
$(".showImg").removeClass("active");
$(this).addClass("active");

var imgURL = $(this).find('img').attr("src");
$('#imgHolder').find('img').attr("src", imgURL);
});​

WORKING DEMO

关于javascript - 用更大的图像交换缩略图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12174858/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com