我创建了一个带有缩略图的小型图片库。每次我将鼠标悬停在给定颜色上时,主窗口中的图像都会变为具有这种颜色的图像(实际上,我希望将彩色图像替换为我放在那里的图像的不同颜色变化)。
我想做的是在我的页面上放置多个这样的画廊。问题是,如果我添加另一个画廊,一切都会重复。我想避免为每个画廊创建 css 和 jquery 代码。有什么办法可以做到这一点?
另外,最初我希望仅在单击彩色缩略图时才出现大图像,而不是悬停在上面,但是当我使用click()
而不是 时mouseover()
,图像“闪烁”并消失。我究竟做错了什么?
下面是我的代码:
CSS
.g-wrap {
width: 250px;
margin: 0;
padding: 0;
}
.g-image {
width: 250px;
height: 159px;
position: relative;
}
.g-image img {
display: none;
position: absolute;
width: 250px;
height: 159px;
border: none;
}
.g-colors {
margin: 0 auto;
}
.g-colors a {
display: block;
width: 24px;
height: 24px;
float: left;
}
.clearfix {
float: none;
clear: both;
}
/*Color palette*/
.purple {background-color: #7d278a;}
.beige {background-color: #b8b596;}
.gray {background-color: #5a5b5d;}
.blue {background-color: #5388d4;}
HTML
<div class="g-wrap">
<div class="g-image">
<a href=""><img src="http://imageshack.us/a/img89/4650/purplew.jpg" /></a>
<a href=""><img src="http://imageshack.us/a/img18/6574/beigekq.jpg" /></a>
<a href=""><img src="http://imageshack.us/a/img526/2198/grayw.jpg" /></a>
<a href=""><img src="http://imageshack.us/a/img849/6161/blueye.jpg" /></a>
</div>
<div class="g-colors">
<a href="" title="purple" class="purple"></a>
<a href="" title="beige" class="beige"></a>
<a href="" title="gray" class="gray"></a>
<a href="" title="blue" class="blue"></a>
</div>
<div class="clearfix"></div>
</div>
jQuery
$(document).ready(function(){
var totalWidth = 0;
$(".g-colors").children().each(function() {
totalWidth = totalWidth + $(this).width();
$(".g-colors").css('width',totalWidth);
});
});
$(document).ready(function(){
$(".g-image img").eq(0).css('display','block')
$(".g-colors a").each(function(){
$(this).mouseover(function(){
var x = $(this).index();
$(this).closest(".g-image img").hide();
$(this).closest(".g-image img").eq(x).show();
});
});
});