gpt4 book ai didi

border - 图像悬停改变颜色和边框半径

转载 作者:行者123 更新时间:2023-11-28 17:48:20 26 4
gpt4 key购买 nike

我有一个网站画廊的设计。我有一个图像,当我将鼠标悬停在它上面时,它会用颜色或图像更改图像并显示图像的标题。也许这张图片可以描述我的问题(第 1 个):

enter image description here

我的下一个问题是:是否可以像我的图像(第 2 号)那样使边框半径不圆但变窄,因为我将有一个像这样的左边框的容器。

最佳答案

关于第一个问题,你可以尝试这样的事情。简直就是通过css的绝对定位来完成!您还可以为此在线查找大量可用的插件。这里的 JSFiddle:http://jsfiddle.net/amitdatta/z4gY8/

HTML

<div class="thumb">
<img src="http://www.hdpaperwall.com/wp-content/uploads/2014/01/beautyful_scenery-2560x1600.jpg" width="350px" />
<div>
<div>
<p>CAPTION GOES HERE</p>
</div>
</div>
</div>

CSS

.thumb {
position: relative;
width: 350px;
overflow: hidden;
}
.thumb img {
width: 100%;
padding: 0;
}
.thumb > div {
background-color: rgba(21, 29, 29, 0.75);
opacity: 0;
position: absolute;
width: 100%;
bottom: 5px;
left: 0;
-webkit-transition: opacity 0.3s linear;
text-shadow: #000 1px 1px 0;
color: #ccc;
}
.thumb:hover > div {
display: block;
opacity: 1.0;
}
.thumb > div div {
padding: 10px 20px;
}
.thumb p {
color: #FFF;
font-size: 16px;
text-align: center;
margin-bottom: 10px;
}

关于您的第二个问题,您可以尝试以下代码。现在,您可以轻松地使用 CSS 绘制任何规则形状!这里的 JSFiddle:http://jsfiddle.net/amitdatta/Ean2z/

HTML

<div id='shape'></div>

CSS

#shape {
width: 350px;
height: 200px;
background: red;
position: relative;
}
#shape:before {
content:"";
position: absolute;
top: 0;
left: 0;
border-bottom: 70px solid red;
border-left: 70px solid #FFF;
width: 42px;
height: 0;
}

关于border - 图像悬停改变颜色和边框半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22830073/

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