就是说,页面整体宽度是超出浏览器宽度的,让这个页面自动从左侧滚到右,再滚回来,这么循环滚动
3条回答 默认 最新
斯洛文尼亚旅游 2018-09-03 05:50关注<!doctype html> <style>body{margin:0}</style> <div>111<script>document.write('123456789'.repeat('30'))</script></div> <script> var root = document.compatMode == 'CSS1Compat' ? 'documentElement' : 'body' , clientWidth = document[root].clientWidth, scrollWidth = document[root].scrollWidth , step = 100, delay = 200; window.onresize = function () { clientWidth = document[root].clientWidth; scrollWidth = document[root].scrollWidth } if (scrollWidth > clientWidth) setInterval(function () { document[root].scrollLeft += step; if (document[root].scrollLeft >= scrollWidth - clientWidth || document[root].scrollLeft == 0) step = -step; }, delay) </script>本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报