zoukankan      html  css  js  c++  java
  • 8.五环

    线上地址http://lsenlin.top/fiveCircle/circle.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <style>
        .container{
            360px;
            height:150px;
            border:1px solid ;
            position:relative;
        }
        .c1,.c2,.c3,.c4,.c5{
            position: absolute;
            box-sizing:border-box;
            100px;
            height:100px;
            border-radius:50%;
        }
        .c1{
            top:0;
            left:0;
            border-color:#1587c1;
            transform: rotate(270deg);
        }
        .c2{
            top:0;
            left:130px;
            border-color:#000;
            transform:rotate(90deg);
        }
        .c3{
            top:0;
            left:260px;
            border-color: #eb3350;
            transform:rotate(90deg);
        }
        .c4{
            top:38px;
            left:65px;
            border-color:#fab23f;;
        }
        .c5{
            top:38px;
            left:195px;
            border-color:#1f8b3d;
            transform:rotate(90deg);
        }
        .ring{
            z-index:0;
            border-bottom-color:transparent;
        }
        .c1-index,.c2-index,.c5-index{
            z-index:1;
        }
        .c3-index{
            z-index:2;
        }    
    </style>
    <body>
        <div class="container">
            <div class="c1"></div>
            <div class="c1 ring c1-index"></div>
            <div class="c2"></div>
            <div class="c2 ring c2-index"></div>
            <div class="c3"></div>
            <div class="c3 ring c3-index"></div>
            <div class="c4"></div>
            <div class="c4 ring "></div>
            <div class="c5"></div>
            <div class="c5 ring c5-index"></div>
        </div>
    </body>
    </html>
  • 相关阅读:
    弹出窗口失败 Debug Assertion Failed!
    颜色设置 OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 的用法
    启动项
    进程PK线程
    获取代码运行时间,获取当前系统时间,日期
    在WindowsPhone8中生成基于MVVM Light的LongListSelector拼音检索绑定
    微软认证考试Mcts70511 part1翻译_Part2_使用控件_ContentControl
    微软认证考试Mcts70511 part1翻译_Part1_考分分配
    ORA14452: attempt to create, alter or drop an index on temporary table already in use
    HPUX日常工作整理
  • 原文地址:https://www.cnblogs.com/stone5/p/9110566.html
Copyright © 2011-2022 走看看