首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

css3 背景图动画(2)

css3 背景图动画(2)

示例2:鼠标划过动画效果
代码:

    <!DOCTYPE html>
    <html>
    <head>
        <title></title>
        <style type="text/css">
         @keyframes mlfly {
              0%{
                  background-position:0 0;
              }
              100%{
                  background-position:0px -4425px;
              }
          }
          .kk1:hover{
            animation:mlfly .2s steps(59,start) .0s forwards;
          }
         
          .kk1{
            position:absolute;
            height: 75px;
            width: 75px;
            background: url('https://img.alicdn.com/tps/TB1sd_fLXXXXXX2XFXXXXXXXXXX-150-9000.jpg') center 0 no-repeat;
             -webkit-transform-style: preserve-3d;
                    transform-style: preserve-3d;
            background-size: 75px auto;
            -webkit-transform-style: preserve-3d;
                    transform-style: preserve-3d;
          }
        </style>
        </style>
    </head>
    <body>
    <div class="kk1"></div>
    </body>
    </html>

原图:
返回列表