zoukankan      html  css  js  c++  java
  • 安卓机器人实现

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
    .box{
    300px;
    height: 300px;
    border: 1px solid red;
    background-color: rgb(183,226,219);
    margin: 100px auto;
    }
    .header{
    145px;
    height: 70px;
    margin: 20px auto;
    background-color: rgb(148,194,72);
    border-radius: 75px 75px 0 0;
    position: relative;
    }
    .header::before{
    content: '';
    16px;
    height: 16px;
    background-color: white;
    position: absolute;
    top:30px;
    left:25px;
    border-radius: 50%;
    }
    .header::after{
    content: '';
    16px;
    height: 16px;
    background-color: white;
    position: absolute;
    top:30px;
    right:25px;
    border-radius: 50%;
    }
    .line{
    146px;
    height: 80px;
    position: absolute;
    }
    .line::before{
    content: '';
    6px;
    height: 30px;
    background-color: rgb(148,194,72);
    position: absolute;
    top: -10px;
    left: 15px;
    border-radius: 5px;
    transform: rotate(-30deg);
    }
    .line::after{
    content: '';
    6px;
    height: 30px;
    background-color: rgb(148,194,72);
    position: absolute;
    top: -10px;
    right: 15px;
    border-radius: 5px;
    transform: rotate(30deg);
    }
    .body{
    145px;
    height: 125px;
    margin: -10px auto;
    background-color: rgb(148,194,72);
    border-radius: 0 0 10px 10px;
    position: relative;
    }
    .body::before{
    content: '';
    height: 100px;
    30px;
    background-color: rgb(148,194,72);
    position: absolute;
    left: -35px;
    border-radius: 15px;
    }
    .body::after{
    content: '';
    height: 100px;
    30px;
    background-color: rgb(148,194,72);
    position: absolute;
    right: -35px;
    border-radius: 15px;
    }
    .footer{
    145px;
    margin: 10px auto;
    position: relative;
    }
    .footer::before{
    content: '';
    38px;
    height: 50px;
    background-color: rgb(148,194,72);
    position: absolute;
    left: 25px;
    border-radius: 0 0 17px 17px;
    }
    .footer::after{
    content: '';
    38px;
    height: 50px;
    background-color: rgb(148,194,72);
    position: absolute;
    right: 25px;
    border-radius: 0 0 17px 17px;
    }
    </style>
    </head>
    <body>
    <div class='box'>
    <div class="header">
    <div class="line"></div>
    </div>
    <div class="body"></div>
    <div class="footer"></div>
    </div>
    </body>
    </html>

    
    
  • 相关阅读:
    struts2后台返回json到jsp页面
    潜搜索——搜索界的趋势
    pat1022__字符串查找
    PAT1055___排序神题
    Codeforces Round #205 (Div. 2)C 选取数列可以选择的数使总数最大——dp
    Codeforces Round #204 (Div. 2) C. Jeff and Rounding——数学规律
    队列模拟题——pat1026. Table Tennis
    骰子点数概率__dp
    PAT1034. Head of a Gang ——离散化+并查集
    回文字符串的变形——poj1159
  • 原文地址:https://www.cnblogs.com/Ma-lulu/p/5816064.html
Copyright © 2011-2022 走看看