【問題】元素position:fixed,無法在窗口大小改變時實現水平滑動
【原因】CSS樣式"position:fixed"可以使div塊固定在一個固定位置,即使有滾動條也不會改變其位置
【解決辦法】
js
window.onscroll = function () {
var sl = -Math.max(document.body.scrollLeft, document.documentElement.scrollLeft); // 獲取滑動距離
document.getElementById('固定元素ID').style.left = sl + 'px'; // 設置元素的偏離距離
}