js css html

CSS 实现鼠标hover 展示内容

2022-12-07  本文已影响0人  苏苏哇哈哈

前言

👏CSS 实现鼠标hover 展示内容,速速来Get吧~

🥇文末分享源代码。记得点赞+关注+收藏!

1.实现效果

在这里插入图片描述

2.实现步骤

 <div class="box"></box>
.box {
  position: relative;
  width: 300px;
  height: 300px;
}
在这里插入图片描述
<div class="box">
  + <img src="https://i.postimg.cc/GhXrMDN0/card.jpg" alt="图片" />
</div>
.box img {
  width: 100%;
  height: 100%;
}
在这里插入图片描述
.box:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
在这里插入图片描述
.box img {
  + transition: all 0.4s;
}
.box:hover img {
 opacity: 0.8;
 filter: brightness(1.5);
}
在这里插入图片描述
.box:hover:before {
  height: 70%;
  border-radius: 0 0 150px 150px;
  box-shadow: 0 0 20px #000;
  opacity: 1;
}
在这里插入图片描述 在这里插入图片描述
<div class="box">
 + <div class="box-content">
 +  <p>苏苏小苏苏</p>
 +  <p>web 前端</p>
 + </div>
</div>
.box .box-content {
  color: #333;
  text-align: center;
  width: 100%;
  padding: 0 30px;
  transform: translateX(-50%);
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}
在这里插入图片描述
.box:hover .box-content {
  opacity: 1;
}
在这里插入图片描述
<div class="box">
    + <div class="box-icon">
    +  <div class="icon-item"><span class="iconfont">&#xe698;</span></div>
    +  <div class="icon-item"><span class="iconfont">&#xe65c;</span></div>
    + </div>
</div>
.box .box-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  align-items: center;
}
.box .icon-item {
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.5);
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 31px;
  border: 2px solid #fff;
  cursor: pointer;
}
在这里插入图片描述
.box .icon-item{
    + transition: all 0.4s;
}
.box .icon-item:nth-child(1) {
   transform: translateX(-200px);
}
.box .icon-item:nth-child(2) {
   transform: translateX(200px);
}
在这里插入图片描述 在这里插入图片描述
.box {
 + overflow: hidden;
}
在这里插入图片描述
.box .icon-item:hover {
  background-color: #fff;
  border-radius: 50%;
}

3.实现代码

<!DOCTYPE html>
<html lang="zh">
  <head>
    <link rel="stylesheet" href="./font.css" />
    <link rel="stylesheet" href="../common.css" />
    <style>
      .box {
        overflow: hidden;
        position: relative;
        width: 300px;
        height: 300px;
      }
      .box img {
        width: 100%;
        height: 100%;
        transition: all 0.4s;
      }
      .box:before {
        content: "";
        background: rgba(255, 255, 255, 0.5);
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all 0.4s ease;
      }
      .box:hover:before {
        height: 70%;
        border-radius: 0 0 150px 150px;
        box-shadow: 0 0 20px #000;
        opacity: 1;
      }
      .box:hover img {
        opacity: 0.8;
        filter: brightness(1.5);
      }
      .box .box-content {
        color: #333;
        text-align: center;
        width: 100%;
        padding: 0 30px;
        transform: translateX(-50%);
        position: absolute;
        top: 25%;
        left: 50%;
        z-index: 1;
        opacity: 0;
        transition: all 1s ease;
      }
      .box-content p:nth-child(1) {
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 8px;
        text-transform: uppercase;
        /* 定义无小写字母,仅有大写字母 */
        margin: 0 0 2px;
      }
      .box-content p:nth-child(2) {
        font-size: 16px;
        text-transform: capitalize;
        /* 文本中的每个单词以大写字母开头 */
      }
      .box:hover .box-content {
        opacity: 1;
      }
      .box .box-icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        display: flex;
        align-items: center;
      }
      .box .icon-item {
        margin: 0 2px;
        background: rgba(255, 255, 255, 0.5);
        height: 35px;
        width: 35px;
        text-align: center;
        line-height: 31px;
        border: 2px solid #fff;
        cursor: pointer;
        transition: all 0.4s;
      }
      .box .icon-item:nth-child(1) {
        transform: translateX(-200px);
      }
      .box .icon-item:nth-child(2) {
        transform: translateX(200px);
      }
      .box:hover .icon-item {
        transform: translateX(0);
      }
      .box .icon-item:hover {
        background-color: #fff;
        border-radius: 50%;
      }
    </style>
  </head>
  <body>
    <div class="box">
      <img src="https://i.postimg.cc/GhXrMDN0/card.jpg" alt="图片" />
      <div class="box-content">
        <p>苏苏小苏苏</p>
        <p>web 前端</p>
      </div>
      <div class="box-icon">
        <div class="icon-item"><span class="iconfont">&#xe698;</span></div>
        <div class="icon-item"><span class="iconfont">&#xe65c;</span></div>
      </div>
    </div>
  </body>
</html>

4.写在最后🍒

看完本文如果觉得对你有一丢丢帮助,记得点赞+关注+收藏鸭 🍕
更多相关内容,关注🍥苏苏的bug,🍡苏苏的github,🍪苏苏的码云~
上一篇 下一篇

猜你喜欢

热点阅读