要实现图片鼠标悬停折叠效果,可以通过CSS的transform属性来实现。具体步骤如下:
要实现图片鼠标悬停折叠效果,可以通过CSS的transform属性来实现。具体步骤如下:
- HTML结构:首先需要在HTML中添加一张图片,然后用一个div将图片包裹起来,并添加一个文字描述:
<div class="image-box">
<img src="image.jpg" alt="图片描述">
<div class="description">图片描述</div>
</div>
- CSS样式:接下来需要对这个div设置一些基本样式,如宽度、高度、边框等,并将图片设为相对定位,用于后续进行绝对定位:
.image-box {
width: 300px;
height: 200px;
border: 1px solid #ccc;
position: relative;
}
.image-box img {
position: absolute;
top: 0;
left: 0;
}
- 鼠标悬停效果:要实现鼠标悬停折叠效果,需要在鼠标悬停时对图片进行变换,这里使用CSS的transform属性,并在悬停状态下增加一个背景遮罩:
.image-box:hover img {
transform: scale(0.8);
}
.image-box:hover::before {
content: "";
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
position: absolute;
top: 0;
left: 0;
}
其中,transform: scale(0.8); 表示将图片缩小为原来的80%。而:hover伪类则表示鼠标悬停状态下生效。另外,添加了一个:before伪元素来实现背景遮罩效果。
示例1:
<div class="image-box">
<img src="image1.jpg" alt="图片描述">
<div class="description">图片描述</div>
</div>
.image-box {
width: 300px;
height: 200px;
border: 1px solid #ccc;
position: relative;
}
.image-box img {
position: absolute;
top: 0;
left: 0;
}
.image-box:hover img {
transform: scale(0.8);
}
.image-box:hover::before {
content: "";
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
position: absolute;
top: 0;
left: 0;
}
示例2:
<div class="image-box">
<img src="image2.jpg" alt="图片描述">
<div class="description">图片描述</div>
</div>
.image-box {
width: 300px;
height: 200px;
border: 1px solid #ccc;
position: relative;
}
.image-box img {
position: absolute;
top: 0;
left: 0;
}
.image-box:hover img {
transform: scale(0.8);
}
.image-box:hover::before {
content: "";
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
position: absolute;
top: 0;
left: 0;
}
通过以上步骤可以在网页中实现图片鼠标悬停折叠效果。
沃梦达教程
本文标题为:CSS 实现 图片鼠标悬停折叠效果
猜你喜欢
- js关闭浏览器窗口及检查浏览器关闭事件 2023-12-26
- 关于Ajax跨域问题及解决方案详析 2023-02-23
- vue实现三级页面跳转功能 2023-07-09
- 活到老学到老学习AJAX跨域(三) 2022-12-15
- JavaScript函数中关于valueOf和toString的理解 2023-12-26
- vue post application/x-www-form-urlencoded传参的解决方案 2023-10-08
- jsp+ajax实现无刷新上传文件的方法 2022-12-15
- vue-router的两种模式 2023-10-08
- vue封装tree组件实现搜索功能 2023-07-09
- 详解CSS样式中的!important、*、_符号 2022-11-13