CSS3-------弹簧特效

本文详细介绍了如何使用CSS3创建一个动态的3D弹簧特效,通过精确的定位和动画设置,实现了不同尺寸圆环的弹性运动,展示了CSS3在网页动画设计上的强大能力。
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>CSS3弹簧特效</title>
    <style>
        * {
            margin: 0;
            padding: 0
        }
        html,body{
            width: 100%;
            height: 100%;
            display: flex;
        }
        body{
            perspective: 800px;
        }

        .wrap{
            width: 400px;
            height: 400px;
            margin: auto;
            transform: rotateX(60deg);
            position: relative;
            transform-style: preserve-3d;
        }
        .wrap div{
            position: absolute;
            border: 15px solid #ccd7d9;
            border-color: #ccd7d9 #d2dbde #d7e0e2 #d2dbde;
            border-radius: 50%;
            box-shadow: 0 1px 0 #fff, 0 10px 0 #abbdc1 inset, 0 10px 0 #abbdc1;
            transform: translateZ(-50px);
        }
        .wrap div:nth-child(1){
            left: calc( 400px/2 - 340px/2 - 15px );
            top: calc( 400px/2 - 340px/2  - 15px );
            width: 340px;
            height: 340px;

            animation: play1 2s 2400ms ease-in-out infinite alternate;
        }
        .wrap div:nth-child(2){
            left: calc( 400px/2 - 280px/2 - 15px );
            top: calc( 400px/2 - 280px/2  - 15px );
            width: 280px;
            height: 280px;
            animation: play1 2s 2000ms ease-in-out infinite alternate;
        }
        .wrap div:nth-child(3){
            left: calc( 400px/2 - 220px/2 - 15px );
            top: calc( 400px/2 - 220px/2  - 15px );
            width: 220px;
            height: 220px;
            animation: play1 2s 1600ms ease-in-out infinite alternate;
        }
        .wrap div:nth-child(4){
            left: calc( 400px/2 - 160px/2 - 15px );
            top: calc( 400px/2 - 160px/2  - 15px );
            width: 160px;
            height: 160px;
            animation: play1 2s 1200ms ease-in-out infinite alternate;
        }
        .wrap div:nth-child(5){
            left: calc( 400px/2 - 100px/2 - 15px );
            top: calc( 400px/2 - 100px/2  - 15px );
            width: 100px;
            height: 100px;
            animation: play1 2s 800ms ease-in-out infinite alternate;
        }
        .wrap div:nth-child(6){
            left: calc( 400px/2 - 40px/2 - 15px );
            top: calc( 400px/2 - 40px/2  - 15px );
            width: 40px;
            height: 40px;
            animation: play1 2s 400ms ease-in-out infinite alternate;
        }
        @keyframes play1 {
            from{
                transform: translateZ(-50px);
            }
            to{
                transform: translateZ(100px);
            }
        }
    </style>
</head>
<body>
    <div class="wrap">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </div>
</body>
</html>

 

转载于:https://www.cnblogs.com/Dyla/p/9934552.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值