h5 ios端滑动上下拉橡皮筋的解决方案

mac2025-10-16  8

顶部或底部元素设置 position:fixed; top:0;left:0; right:0; bottom:0;

同时body不能设置100%,内容超出让浏览器的滚动条滚动

如果有背景图片,则在放置背景图片的元素class设置伪元素

.background-image:before{ content: ‘’; position: fixed; z-index: -1; top: 0; right: 0; bottom: 0; left: 0; background: url(’…/img/mobileIndex/BG.svg’) center 0 no-repeat; background-size: cover; }

最新回复(0)