我正在我的投资组合网站上工作,它应该是一个带有图片作为标签的大型手风琴。由于它是一个长页面,因此选项卡不会是链接。我对 jquery 真的很陌生,所以我不知道如何使它与我的 css 一起工作。基本上,应该发生的是,当您单击选项卡时,选项卡图像会随着手风琴拉下描述而转换为标题。我只希望在单击时发生过渡。
可以在这里看到过渡
它显示了转换应该如何工作,但目前它只能由悬停状态触发。谢谢!
html:
<div class="img-container">
<img src="images/fashion_spread.jpg">
<div class="img-hidden">
<img src="images/fashion_spread_bw.jpg">
</div>
</div>
CSS:
.img-container {
width: 100%;
height: auto;
margin-right: auto;
margin-left:auto;
float: left;
display:list-item;
position: relative;
}
.img-container img {
width: 100%;
height: auto;
}
.img-hidden {
bottom:0;
position: absolute;
opacity:0;
filter: alpha(opacity = 0);
width: 100%;
height: 100%;
z-index:1000;
transition:opacity 0.5s;
-moz-transition:opacity 0.5s;
-webkit-transition:opacity 0.5s;
}
.img-container:hover .img-hidden{
opacity:1;
filter: alpha(opacity = 100);
transition:opacity 0.5s;
-moz-transition:opacity 0.5s;
-webkit-transition:opacity 0.5s;
}