码迷,mamicode.com
首页 > 其他好文 > 详细

animation循环滚动

时间:2017-07-06 01:05:54      阅读:497      评论:0      收藏:0      [点我收藏+]

标签:html   tle   img   循环滚动   lang   init   滚动   har   anim   

css3 简单循环滚动

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        @keyframes lbody {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(0, -520px, 0);       //滚动内容div高度和
            }
        }
        .box{
            width: 800px;
            border: 1px solid #000000;
            position: absolute;
            height: 500px;
            overflow: hidden;
        }
        .box .lbody{
            animation: 15s lbody linear infinite normal;
            position: absolute;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="lbody">
            <div><img  width="800" height="100" style="background-color: #0002ff"></div>
            <div><img  width="800" height="100" style="background-color: #00fff7"></div>
            <div><img  width="800" height="100" style="background-color: #4bff00"></div>
            <div><img  width="800" height="100" style="background-color: #ffe500"></div>
            <div><img  width="800" height="100" style="background-color: #ff0900"></div>

            <div><img  width="800" height="100" style="background-color: #0002ff"></div>
            <div><img  width="800" height="100" style="background-color: #00fff7"></div>
            <div><img  width="800" height="100" style="background-color: #4bff00"></div>
            <div><img  width="800" height="100" style="background-color: #ffe500"></div>
            <div><img  width="800" height="100" style="background-color: #ff0900"></div>
        </div>
    </div>
</body>
</html>

  

animation循环滚动

标签:html   tle   img   循环滚动   lang   init   滚动   har   anim   

原文地址:http://www.cnblogs.com/liangjj/p/7124184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!