gpt4 book ai didi

html - 将鼠标悬停在图像上时如何设置不同的背景形状?

转载 作者:行者123 更新时间:2023-11-28 08:32:51 25 4
gpt4 key购买 nike

我在列中创建了三个图像,并设置了

column-count: 3;

然后我为这三张图片设置了边框宽度。现在我需要了解悬停状态。

HTML:

<div class="wrap">
<h1 class="content-title">
<span>Popular</span>
</h1>
<div class="col-3">
<div class="popular">
<a href="#">
<img src="http://s7.postimg.org/bq6aahcpn/Book_ll_4.jpg" />
</a>
</div>
<div class="caption"><a href="olymbic.html"><h2>Saina nehwal first match</h2><p>fasdfjaksdksdfh skdfk</p></a>
</div>
<div class="popular">
<a href="#">
<img src="http://s7.postimg.org/bq6aahcpn/Book_ll_4.jpg" />
</a>
</div>
<div class="caption"><a href="#"><h2>Saina nehwal first match</h2><p>fasdfjaksdksdfh skdfk</p></a>
</div>
<div class="popular">
<a href="#">
<img src="http://s7.postimg.org/bq6aahcpn/Book_ll_4.jpg" />
</a>
</div>
<div class="caption"><a href="#"><h2>Saina nehwal first match</h2><p>fasdfjaksdksdfh skdfk</p></a>
</div>
</div>
</div>

当我悬停图片时,它需要像这样显示

enter image description here

这是我工作的 jsfiddle:http://jsfiddle.net/6g7v899q/

我需要这样的东西[你能在阅读帖子部分引用这个网站 gatesnotes.com 吗?..我需要这样的东西..]

我可以知道怎么做吗?

提前致谢。

最佳答案

这可以通过框上边框的 widthcolor 实现,您引用的页面具有以下样式:

.hpunit .hpimgrel .hpbook:hover .gbox {
border-left: 59px solid #ddd;
border-right: 59px solid #ddd;
}

在你的代码中可以这样:

.popular {
display:inline-block;
border:40px solid #eee;
box-sizing:border-box;
}
.popular:hover {
border-left:40px solid gray;
border-right:40px solid gray;
}
<div class="wrap">
<h1 class="content-title">
<span>Popular</span>
</h1>
<div class="col-3">
<div class="popular">
<a href="#">
<img src="http://s7.postimg.org/bq6aahcpn/Book_ll_4.jpg" />
</a>
</div>
<div class="caption"><a href="olymbic.html"><h2>Saina nehwal first match</h2><p>fasdfjaksdksdfh skdfk</p></a>
</div>
<div class="popular">
<a href="#">
<img src="http://s7.postimg.org/bq6aahcpn/Book_ll_4.jpg" />
</a>
</div>
<div class="caption"><a href="#"><h2>Saina nehwal first match</h2><p>fasdfjaksdksdfh skdfk</p></a>
</div>
<div class="popular">
<a href="#">
<img src="http://s7.postimg.org/bq6aahcpn/Book_ll_4.jpg" />
</a>
</div>
<div class="caption"><a href="#"><h2>Saina nehwal first match</h2><p>fasdfjaksdksdfh skdfk</p></a>
</div>
</div>
</div>

关于html - 将鼠标悬停在图像上时如何设置不同的背景形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28191734/

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