美文网首页CSS3
2018-05-17 css3简单动画 上下切换图片效果:

2018-05-17 css3简单动画 上下切换图片效果:

作者: 啾咪啾咪啾 | 来源:发表于2018-05-17 15:44 被阅读0次

    <div class="div">
    <div class ="d1"> 图片上下滚动。
    <img src="images/jianshe.png">
    </div>
    <div class="d1">
    <img src="images/zhaoshang.png">
    </div>
    </div>

    <style>
    .div{
        height: 50px;
        width: 100px;
        border:1px solid red;
        overflow: hidden;
    }
        .d1 img{
            width:50px;
            height:50px;
            position: relative;
            animation: myimg 5s infinite;
        }
        @keyframes myimg{
            0%{top: 0px;}
            50%{top: -50px;}
            100%{top: 0px;}
        }
    </style>
    

    相关文章

      网友评论

        本文标题:2018-05-17 css3简单动画 上下切换图片效果:

        本文链接:https://www.haomeiwen.com/subject/nmwbdftx.html