• 图片放大缩小闪烁效果


    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>css3 图片放大缩小闪烁效果</title>
    <style></style>

    <style>
    body{background:#7fa8d1;opacity:0.5.6;}

    .flicker_down{
    105px;
    height:105px;
    display:inline-block;
    position:fixed;
    bottom:40%;
    left:50%;
    background:url("images/last.png") no-repeat;

    }
    @keyframes flicker{
    0%,100%{
    transform:scale(0.6);
    -moz-transform:scale(0.6);
    -o-transform:scale(0.6);
    -webkit-transform:scale(0.6);
    -ms-transform:scale(0.6);
    opacity:0.5
    }
    50%{
    transform:scale(1.0);
    -moz-transform:scale(1.0);
    -o-transform:scale(1.0);
    -webkit-transform:scale(1.0);
    -ms-transform:scale(1.0);
    opacity:1
    }

    }
    @-webkit-keyframes flicker{
    0%,100%{
    -webkit-transform:scale(0.6);
    -moz-transform:scale(0.6);
    -o-transform:scale(0.6);
    -ms-transform:scale(0.6);
    transform:scale(0.6);
    opacity:0.5
    }
    50%{
    -webkit-transform:scale(1.0);
    -moz-transform:scale(1.0);
    -o-transform:scale(1.0);
    -ms-transform:scale(1.0);
    transform:scale(1.0);
    opacity:1
    }

    }
    @-moz-keyframes flicker{
    0%,100%{
    -moz-transform:scale(0.6);
    -o-transform:scale(0.6);
    -webkit-transform:scale(0.6);
    -ms-transform:scale(0.6);
    transform:scale(0.6);
    opacity:0.5
    }
    50%{
    -moz-transform:scale(1.0);
    -o-transform:scale(1.0);
    -webkit-transform:scale(1.0);
    -ms-transform:scale(1.0);
    transform:scale(1.0);
    opacity:1
    }

    }
    @-o-keyframes flicker{
    0%,100%{
    -o-transform:scale(0.6);
    -moz-transform:scale(0.6);
    -webkit-transform:scale(0.6);
    -ms-transform:scale(0.6);
    transform:scale(0.6);
    opacity:0.5
    }
    50%{
    -o-transform:scale(1.0);
    -moz-transform:scale(1.0);
    -webkit-transform:scale(1.0);
    -ms-transform:scale(1.0);
    transform:scale(1.0);
    opacity:1
    }

    }
    .flicker_down.trans{
    -webkit-animation:flicker 2.0s infinite ease-in-out;
    -moz-animation:flicker 2.0s infinite ease-in-out;
    -o-animation:flicker 2.0s infinite ease-in-out;
    animation:flicker 2.0s infinite ease-in-out
    }
    .flicker_down.arrow{
    animation-delay:-2.0s;
    -webkit-animation-delay:-2.0s;
    -moz-animation-delay:-2.0s;
    -o-animation-delay:-2.0s
    }


    .title{
    position: fixed;
    bottom: 40px;
    color: #FFF;
    left: 50%;
    margin-left: -14px;

    }
    .test{
    display:block;
    100px;height:100px;
    background:url("images/last.png");
    }
    </style>
    </head>
    <body>
    <div>
    <a href="" class="test"></a>
    <a class="flicker_down arrow trans" href="" onclick="return false;" hidefocus=""></a>

    </div>
    </body>
    </html>

  • 相关阅读:
    2.4学习
    2.3学习
    2.2学习
    2.1学习
    公文流转系统 模拟
    《GCC编译器的使用以及静态库和动态库的制作与使用》
    《驱动调试
    《海思3521D
    《驱动调试
    《驱动调试
  • 原文地址:https://www.cnblogs.com/pikachuworld/p/5754229.html
Copyright © 2020-2023  润新知