纯css无缝滚动_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:37:17
Original
1244 people have browsed it

原理:

复制一份需要无缝滚动的区域

<div class="page">    <ul class="box item1">        <li>1</li>        <li>2</li>        <li>3</li>        <li>4</li>        <li>5</li>        <li>6</li>    </ul>    <ul class="box item2">        <li>1</li>        <li>2</li>        <li>3</li>        <li>4</li>        <li>5</li>        <li>6</li>    </ul></div>  
Copy after login

animation css3动画

/*核心css*/@keyframes moveup{    0% {        transform: translateY(0);    }    100% {        transform: translateY(-100%);    }}.box { animation: moveup 10s  linear infinite; }.page { overflow: hidden; }/*样式*/.page { margin-top: 200px; height: 100px; border-top: 2px solid lightblue; border-bottom: 2px solid red; }.box {margin: 0;}.box li{ line-height: 30px; }
Copy after login

浏览器支持(需加css前缀):IE10+ Chrome FF android2.3+ safair5.1+

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!