css3做炫酷的变色龙效果

布局:

<body>
    <div class="wrap">
        <div class="bianselong"></div>
        <div class="bg-box">
            <div class="bg"></div>
        </div>
         
        <div class="dong"></div>
        <div class="dong-box">
            <div class="bg1"></div>
        </div>
    </div>
</body>

样式:

   <style>
        *{
            margin: 0;
            padding: 0;
        }
        body{
            font-size: 1em;
            font-family:  'microsoft Yahei';
            /* 变色龙背景只能为白色 */
            background-color: #fff;
        }
        html,body{
            width: 100%;
            height: 100%;
           overflow: hidden;
        }
        .wrap{
            width: 440px;
            height: 440px;
            position: relative;
            left: 50%;
            top: 0;
            margin-left: -220px;
        }
        .bianselong{
            width: 170px;
            height: 170px;
            background-image: url(./img/chameleon.png);
            background-repeat: no-repeat;
            background-position: center center;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -85px;
            margin-top: -85px;
            z-index: 3;
        }
        .bg-box{
            width: 170px;
            height: 170px;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -85px;
            margin-top: -85px;
            z-index: 2;
            overflow: hidden;
        }
        .bg{
            width: 984px;
            height: 984px;
            background-image: url(./img/palette.jpg);
            background-repeat: no-repeat;
            position: absolute;
            top: -200px;
            left: -200px;
            animation: animate-rotate 10s linear infinite;
        }
        .dong{
            width: 440px;
            height: 440px;
            background-image: url(./img/dong.png);
            background-repeat: no-repeat;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            animation: animate-rotate 60s linear infinite;
        }
        .dong-box{
            width: 400px;
            height: 400px;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -200px;
            margin-left: -200px;
            z-index: 0;
            overflow: hidden;
        }
        .bg1{
            width: 984px;
            height: 984px;
            background-image: url(./img/palette.jpg);
            background-repeat: no-repeat;
            background-position: center center;
            position: absolute;
            top: -300px;
            left: -300px;
            animation: animate-rotate 10s linear infinite;
        }
        @keyframes animate-rotate{
            0%{
                transform:rotate(0deg);
            }
            100%{
                transform: rotate(360deg);
            }
        }
    </style>

查看效果:

 

 

 两张白色图片,不太容易看到。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值