• css3模仿大风车


    <style>

    .box{

    width: 400px;

    height: 400px;

    margin: 100px auto;

    transition: 5s linear;

    }

    .box div{

    width: 180px;

    height: 180px;

    margin: 10px;

    border: 1px solid #000;

    box-sizing: border-box;

    float: left;

    background: #f00;

    }

    .box div:nth-of-type(1),.box div:nth-of-type(4){

    border-radius: 0 70%;

    }

    .box div:nth-of-type(2),.box div:nth-of-type(3){

    border-radius: 70% 0;

    }

    .box:hover{

    transform: rotate(720deg);

    }

    </style>

     

    <div class="box">

    <div></div>

    <div></div>

    <div></div>

    <div></div>

    </div>

  • 相关阅读:
    C# 调用Java Webservice 加入SoapHeader 验证信息
    SqlServer查找表中多余的重复记录
    INI文件的读写
    Sql触发器脚本
    Sql遍历更新脚本
    CAS 单点登录,通过ticket 获取登录用户
    模块 | 验证格式
    aja如何解决跨域请求?
    说说各个浏览器box模型
    Vue 双向数据绑定原理分析
  • 原文地址:https://www.cnblogs.com/zhuyuanyuan/p/7790377.html
Copyright © 2020-2023  润新知