CSS实现鼠标悬停图片上升显示-CSDN博客

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6

文章目录


前言

当我们想在图片上面放置一些文字内容时发现不管怎么放置要么就是图片影响到文字的观感要么就是文字挡住图片的细节那么怎么可以既看到图片的细节又可以看到对图片的文字描述呢本文给大家分享纯CSS实现鼠标悬停图片上升显示描述案例感兴趣的朋友一起看看吧


一、实现效果

在这里插入图片描述

二、实现思路

我们需要将外层的盒子设置相对定位将其子盒子设置绝对定位形成子绝父相当我们触摸图片时通过 bottom 属性搭配 transition 属性让其以丝滑的动画实现图片上升显示描述的效果。
代码如下示例

<template>
  <div class="parentBox">
    <div class="imgBox">
      <img src="https://i.postimg.cc/4xxZNsL6/1677486088618.png">
    </div>
    <div class="contantBox">详细内容</div>
  </div>
</template>
<style scoped>
.parentBox {
  box-shadow: 2px 2px 8px -1px cornflowerblue;
  width: 200px;
  height: 200px;
  position: relative;
  cursor: pointer;
}

.imgBox {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
}
img {
  width: 100%;
  height: 100%;
}

.parentBox:hover .imgBox {
  bottom: 60px;
}

.contantBox {
  padding: 4px;
  color: white;
  width: 100%;
  height: 60px;
  background: cornflowerblue;
  position: absolute;
  bottom: 0;
}
</style>

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6
标签: CSS

“CSS实现鼠标悬停图片上升显示-CSDN博客” 的相关文章