zoukankan      html  css  js  c++  java
  • Div+Css画太极图源代码

    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        <title>Div+Css太极图</title>
        <style type="text/css">
        .circle{
             100px;
            height: 50px;
            border:1px solid black;
            border-radius: 100px;
            position:relative;
            border-bottom:50px solid black;
          }
        .circle::before{
            float:left;
            content: '';
             10px;
            height: 10px;
            border: 20px solid black;
            border-radius: 50px;
            position: relative;
            top:50%;
            left:0;
            background-color:#fff;

         }
        .circle::after{
            float:right;
            content: '';
             10px;
            height: 10px;
            border: 20px solid #fff;
            border-radius:50px;
            position: relative;
            top:50%;
            left:0;
            background-color:#000;
          }

        </style>
      </head>
      <body>
        <div class="circle">

        </div>
      </body>
    </html>

  • 相关阅读:
    【Proteogenomis】工具评述
    【6】蛋白质组学鉴定定量软件之MaxQuant
    【5】蛋白质组学鉴定定量软件之PD
    【4】蛋白质组学鉴定软件之MSGFPlus
    堆叠式降噪自动编码器(SDA)
    机器学习
    决策优先级的算法
    软件的安装
    一定要读高水平的论文,论文的档次越高,收益越深
    五种世界的顶级定律
  • 原文地址:https://www.cnblogs.com/tl2f/p/4681812.html
Copyright © 2011-2022 走看看