【动画】风车

HTML5+CSS3实现的小风车-转动的童年
在这里插入图片描述

<!DOCTYPE HTML>
<html>

<head>
    <style type="text/css">
        #windmill {
            width: 160px;
            height: 160px;
            position: relative;
            -moz-transition: -moz-transform 2s ease-in-out;
            -webkit-transition: -webkit-transform 2s ease-in-out;
            -moz-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
        }

        #windmill:hover {
            -moz-transform: rotate(960deg);
            -webkit-transform: rotate(960deg);
        }

        #windmill div.top {
            width: 40px;
            height: 80px;
            left: 40px;
            top: 0px;
            border-top-left-radius: 40px;
        }

        #windmill div.right {
            width: 80px;
            height: 40px;
            left: 80px;
            top: 40px;
            border-top-right-radius: 40px;
        }

        #windmill div.bottom {
            width: 40px;
            height: 80px;
            left: 80px;
            top: 80px;
            border-bottom-right-radius: 40px;
        }

        #windmill div.left {
            width: 80px;
            height: 40px;
            left: 0px;
            top: 80px;
            border-bottom-left-radius: 40px;
        }

        #windmill div.ala {
            position: absolute;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            background: rgba(0, 0, 255, 0.4);
            border: 1px solid rgba(0, 0, 255, 0.5);
            -moz-transition: background-color 1s linear;
            -webkit-transition: background-color 1s linear;
        }

        #windmill div.ala:hover {
            background-color: #00F;
        }

        .alaIn {
            position: absolute;
            background: rgba(255, 255, 255, 0.7);
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-transition: background-color 1s linear;
            -webkit-transition: background-color 1s linear;
            left: 0;
            top: 0;
        }

        .alaIn:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .topIn {
            border-bottom-left-radius: 40px;
        }

        .rightIn {
            border-top-left-radius: 40px;
        }

        .bottomIn {
            border-top-right-radius: 40px;
        }

        .leftIn {
            border-bottom-right-radius: 40px;
        }
    </style>
</head>

<body>
    <div id="windmill">
        <div class="top ala"></div>
        <div class="top topIn alaIn"></div>
        <div class="right ala"></div>
        <div class="right rightIn alaIn"></div>
        <div class="bottom ala"></div>
        <div class="bottom bottomIn alaIn"></div>
        <div class="left ala"></div>
        <div class="left leftIn alaIn"></div>
    </div>
</body>

</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值