CSS3 animation设置图片上下移动

时间:2019-07-08 16:25:11   收藏:0   阅读:656

HTML元素

<img src="./images/kaihu.png" alt="开户">

CSS样式

 <style>
        img {
            width: 142px;
            height: 118px;
            position: relative;
            top: 0px;
            animation: myMove 2s infinite;
            -webkit-animation: myMove 2s infinite;
            /* infinite 表示无限循环 */
        }

        @keyframes myMove {
            0% {
                top: 0px;
            }

            50% {
                top: 100px;
            }

            100% {
                top: 0px;
            }
        }

        @-webkit-keyframes myMove {
            0% {
                top: 0px;
            }

            50% {
                top: 100px;
            }

            100% {
                top: 0px;
            }
        }
    </style>

效果:

技术分享图片

 

原文:https://www.cnblogs.com/songxia/p/11151854.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!