欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

纯css无缝滚动_html/css_WEB-ITnose

程序员文章站 2022-05-13 14:38:06
...
原理:

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

  

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+

相关标签: 纯css无缝滚动