CardHover(悬浮卡片)

话不多说,直接上代码!!记得点赞和收藏!!!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .container{
            min-height: 100vj;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .box{
            position: relative;
            width: 350px;
            padding: 40px;
            background-color: #fff;
            box-sizing: border-box;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
            border-radius: 8px;
            text-align: center;
            margin-right: 50px;
            overflow: hidden;
        }
        .box .icon{
            width: 80px;
            height: 80px;
            color: #fff;
            background-color: #000;
            border-radius: 50%;
            font-size: 40px;
            line-height: 80px;
            margin: 0 auto;
            transition: all 1s;
        }
        .box:nth-child(1) .icon{
            box-shadow: 0 0 0 0 #e91e63;
            background: #e91e63;
        }
        .box:nth-child(2) .icon{
            box-shadow: 0 0 0 0 #2196f3;
            background: #2196f3;
        }
        .box:nth-child(1):hover .icon{
            box-shadow: 0 0 0 400px #e91e63;
        }
        .box:nth-child(2):hover .icon{
            box-shadow: 0 0 0 400px #2196f3;
        }
        .box .content h3{
            font-size: 20px;
            margin: 10px 0;
        }
        .box .content p{
            line-height: 25px;
        }
        .box a{
            display: inline-block;
            padding: 10px 20px;
            background-color: #fff;
            box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
            color: #000;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            margin-top: 20px;
            cursor: pointer;
        }
        .box .content{
            transition: all 1s;
        }
        .box:hover .content{
            color: #fff;
        }
        .box::before{
            content: "";
            width: 50%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-color: rgba(255, 255, 255, .2);
            z-index: 2;
        }
        .box .content a{
            position: relative;
            z-index: 3;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="box">
            <div class="icon">01</div>
            <div class="content">
                <h3>title</h3>
                <p>content1</p>
                <p>content2</p>
                <p>content3</p>
                <a href="#">动手试一试</a>
            </div>
        </div>
        <div class="box">
            <div class="icon">02</div>
            <div class="content">
                <h3>title</h3>
                <p>content1</p>
                <p>content2</p>
                <p>content3</p>
                <a href="#">动手试一试</a>
            </div>
        </div>
    </div>
</body>
</html>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值