2
我遇到了視差滾動問題。當鼠標滾輪使用它開始跳躍,它看起來在Chrome上的不好,在IE瀏覽器中很小的跳躍,但在Firefox中很好。視差滾動 - 使用鼠標滾輪時跳轉
這裏是site的鏈接。
我使用視差的代碼是
<script>
var topDiv = document.getElementById("topDiv");
var speed = 1.5;
window.onscroll = function()
{
var yOffset = window.pageYOffset;
topDiv.style.backgroundPosition = "center "+ (yOffset/speed) + "px";
scrolling = true;
}
</script>
如果有人能幫助我吧,我一直在尋求答案,但沒能找到。
在此先感謝