【css样式】当设置元素position:fixed,实现水平滑动

【问题】元素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'; // 设置元素的偏离距离
}

猜你喜欢

转载自www.cnblogs.com/LiCoco/p/12463152.html