Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我不知道如何编写脚本……但是在 HTML 或 CSS 中,有没有办法为任何特定项目设置更快的滚动速度?
尝试使用 JS:
function pageScroll() { window.scrollBy(0,50); scrolldelay = setTimeout('pageScroll()',100); } <body onLoad="pageScroll()">
你可以在这里看到一个例子。
对于 CSS 解决方案(即视差),您可以参考这篇文章。
有关更多信息,请参阅此答案。