<html>
<head>
    <title>水晶球</title>
    <style type="text/css">
        html,body,div,a,font,img{margin:0;padding:0}
        img{border:0}
        @-webkit-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}
        @-moz-keyframes rotate{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(360deg)}}
        @keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
        #doc{width:980px;margin:0 auto;text-align:left}
        #bd{height:514px; background-color:Gray; background:url(http://images.cnblogs.com/likecs_com/wangbogo/441020/r_shuijing.png) no-repeat 285 0; position:relative;}
        .mod-game{position:absolute;width:337px;height:339px;top:26px;left:338px}
        .mod-game .stars
        {
            position:absolute;
            left:0;
            top:0;
            z-index:1;
            width:337px;
            height:339px;
            background:url(http://images.cnblogs.com/likecs_com/wangbogo/441020/r_star.png) no-repeat 0 0;
            -webkit-animation-name:rotate;
            -webkit-animation-duration:10.5s;
            -webkit-animation-iteration-count:infinite;
            -webkit-animation-timing-function:linear;
            -moz-animation-name:rotate;
            -moz-animation-duration:10.5s;
            -moz-animation-iteration-count:infinite;
            -moz-animation-timing-function:linear;
            animation-name:rotate;
            animation-duration:10.5s;
            animation-iteration-count:infinite;
            animation-timing-function:linear
        }
    </style>
</head>
<body>
    <div id="doc" class="page-1">
        <div id="bd">
            <div class="mod-game">
                <div class="stars">
                </div>
            </div>
        </div>
    </div>
</body>
</html>

 

相关文章:

  • 2021-05-22
  • 2021-10-30
  • 2022-01-02
  • 2021-08-28
  • 2021-12-04
  • 2022-01-05
  • 2021-07-26
猜你喜欢
  • 2021-11-27
  • 2022-12-23
  • 2021-11-10
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案