zoukankan      html  css  js  c++  java
  • css 实现水波纹,波浪动画效果

    <div class="wave">
        水波纹效果
        <div class="wave1"></div>
        <div class="wave2"></div>
        <div class="wave3"></div>
    </div>

    css

        .wave{
                position: relative;
                border: 1px solid silver;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                line-height: 50px;
                margin: 0 auto;
                font-size: 14px;
                text-align: center;
                overflow: hidden;
                animation: water-wave linear infinite;
            }
            .wave1{
                position: absolute;
                top: 40%;
                left: -25%;
                background: #33cfff;
                opacity: .7;
                width: 200%;
                height: 200%;
                border-radius: 40%;
                animation: inherit;
                animation-duration: 5s;
            }
            .wave2{
                position: absolute;
                top: 40%;
                left: -35%;
                background: #0eaffe;
                opacity: .7;
                width: 200%;
                height: 200%;
                border-radius: 35%;
                animation: inherit;
                animation-duration: 7s;
            }
            .wave3{
                position: absolute;
                top: 50%;
                left: -35%;
                background: #0f7ea4;
                opacity: .3;
                width: 200%;
                height: 200%;
                border-radius: 33%;
                animation: inherit;
                animation-duration: 11s;
            }
            @keyframes  water-wave{
                0% {transform: rotate(0deg);}
                100% {transform: rotate(360deg);}
            }

    效果图

  • 相关阅读:
    cookie.js插件
    cookie.js插件的案例
    解决mysqli的中文乱码问题
    mysqli字符编码
    小人行走的动画案例
    原生js中用Ajax进行get传参
    php操作数据库
    数据库的信息处理
    数据库的dos命令
    面向对象php 接口 抽象类
  • 原文地址:https://www.cnblogs.com/yhhBKY/p/11934949.html
Copyright © 2011-2022 走看看