>  기사  >  웹 프론트엔드  >  纯css无缝滚动_html/css_WEB-ITnose

纯css无缝滚动_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:37:171234검색

原理:

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

<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>  

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; }

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.