效果图

在这里插入图片描述
在这里插入图片描述

tenplate
<div class="module_box">
            <div class="box">  
                <i><span></span></i>  
            </div>
            <div class="box2">
                <i><span></span></i>
            </div>
            <div class="box3">
                <i class="el-icon-video-play"></i>
            </div>
        </div>
css
.module_box{
    height: 400px;
    display: flex;
    
}
.box{  
        position: relative;  
        width: 300px;  
        height: 300px;  
        border: 5px solid #F5F5F5;  
        border-radius: 50%;
        margin-left: 300px;  
    }  
    .box i{  

        width: 300px;  
        height: 300px;  
        position: absolute;  

        /*旋转动画*/  
        animation:circleRoate 5s infinite linear ;   

    }  
    .box i span{  
        position: absolute;  
        left: 240px;  
        top: 25px;  
        width: 10px;  
        height: 10px;  
        border-radius: 50%;  
        background:#ff6200;  
    }
    
    .box2{
        margin-left: 50px;
        margin-top: 50px;
        width: 200px;
        height: 200px;
        border: 3px solid pink;
        border-radius: 50%;
        position: relative;
    }
    .box2 i{
        width: 200px;
        height: 200px;
        position: absolute;
        animation: circleRoate 3s infinite linear;
        border-radius: 50%;
    }
    .box2 i span{
        width: 8px;
        height: 8px;
        position: absolute;
        border-radius: 50%;
        left: 163px;
        top: 20px;
        background: rgb(139, 214, 233);
    }
    .box3{
        width: 300px;
        height: 300px;
        position: relative;
        text-align: center;
    }
    .box3 i{
        color: #1296DB;
        line-height: 300px;
        font-size: 30px !important;
        animation: circleRoate 2s infinite linear;
    }
    /* 必须要有 */
    @keyframes circleRoate{  
        from{transform: rotate(0deg);}  
        to{transform: rotate(360deg);}  
    }
GitHub 加速计划 / vu / vue
207.52 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:1 个月前 )
73486cb5 * chore: fix link broken Signed-off-by: snoppy <michaleli@foxmail.com> * Update packages/template-compiler/README.md [skip ci] --------- Signed-off-by: snoppy <michaleli@foxmail.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 3 个月前
e428d891 Updated Browser Compatibility reference. The previous currently returns HTTP 404. 3 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐