二维码防伪系统

新闻中心

各种活动实时推动

ios移动端部分手机不支持background-attachment: fixed 的解决办法

发布时间:2024-10-21 点击次数:214

ios系统和某些移动端background-attachment:fixed不兼容性,没有任何效果,大概是ios系统和某些移动端对background-attachment:fixed不兼容,可用伪元素:before的方法代替background-attachment:fixed,代码如下:

ps:想在哪个标签加背景,可以在它class后:before

.bg:before {
  content: ' ';
  position: fixed;
  background: url(path/to/image) center 0 no-repeat;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
 }

copy © 2025 星澜网络 All Rights Reserved

备案号:鲁ICP备2023015769号