每次用户点击网页末尾时,如何让网页重复内容(文本块) - 例如无限滚动,但内容相同?
答案 0 :(得分:0)
已回答您问题的帖子:
Javascript how to detect if browser window is scrolled to the bottom
为了使它无限,你只需在每次达到“窗口底部”状态时附加一个带有内容的标记。
这可以表达为:
window.onscroll = function(ev) {
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
// you're at the bottom of the page
var div = document.createElement('div')
div.innerHTML = "your content"
document.body.appendChild(div)
}
}
答案 1 :(得分:-1)
<marquee>Scrolling text</marquee>