CSS-卡片鼠标悬浮,动起来

这是一个使用HTML和CSS创建的商品列表展示页面,背景色为古董白。每个商品项以flex布局排列,具有平滑的过渡动画效果,当鼠标悬停时,商品框会下移并添加阴影,显示更详细信息。所有商品图片和名称都相同,用于示例。
摘要由CSDN通过智能技术生成

在这里插入图片描述


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      body{
        background-color: antiquewhite;
      }
      .goods-list {
        display: flex;
        justify-content: space-between;
        height: 426px;
      }
      ul {
        list-style: none;
        margin-top: 30px;
      }
      li {
        width: 306px;
        height: 406px;
        transition: all 0.5s;
        margin: 0;
        padding: 0;
        background-color: #fff;
      }
      li:hover {
        transform: translate3d(0, -3px, 0);
        box-shadow: 0 3px 8px rgb(0 0 0 / 20%);
      }
      img {
        width: 306px;
        height: 306px;
      }

      p {
        font-size: 22px;
        padding-top: 12px;
        text-align: center;
      }
    </style>
  </head>
  <body>
    <ul class="goods-list">
      <li>
        <img
          src="https://yjy-oss-files.oss-cn-zhangjiakou.aliyuncs.com/tuxian/popular_1.jpg"
          alt=""
        />
        <p class="name">特惠推荐</p>
      </li>
      <li>
        <img
          src="https://yjy-oss-files.oss-cn-zhangjiakou.aliyuncs.com/tuxian/popular_1.jpg"
          alt=""
        />
        <p class="name">特惠推荐</p>
      </li>
      <li>
        <img
          src="https://yjy-oss-files.oss-cn-zhangjiakou.aliyuncs.com/tuxian/popular_1.jpg"
          alt=""
        />
        <p class="name">特惠推荐</p>
      </li>
      <li>
        <img
          src="https://yjy-oss-files.oss-cn-zhangjiakou.aliyuncs.com/tuxian/popular_1.jpg"
          alt=""
        />
        <p class="name">特惠推荐</p>
      </li>
      <li>
        <img
          src="https://yjy-oss-files.oss-cn-zhangjiakou.aliyuncs.com/tuxian/popular_1.jpg"
          alt=""
        />
        <p class="name">特惠推荐</p>
      </li>
    </ul>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值