每次用户点击网页末尾时,如何让网页重复内容(一段文本) - 就像无限滚动,但内容相同?
问问题
3265 次
2 回答
0
一个已经回答你问题的线程:
为了使其无限,您只需在每次达到“窗口底部”状态时附加一个带有其内容的标签。
这可以这样表达:
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)
}
}
于 2013-09-01T14:32:39.807 回答
-1
<marquee>Scrolling text</marquee>
于 2013-09-01T14:24:56.243 回答