Why does a fixed background-image move when scrolling on IE?

前端 未结 11 1387
时光取名叫无心
时光取名叫无心 2020-12-29 06:37

I\'m trying to make background-image fixed.

As you see in my blog, the background-image is moving when scrolling on IE 11.

How can

11条回答
  •  萌比男神i
    2020-12-29 07:23

    Using this script: https://stackoverflow.com/a/34073019/7958220

    To detect the edge browser, I then changed the style for html and body.

    if (document.documentMode || /Edge/.test(navigator.userAgent)) {
       document.documentElement.style.overflow = "hidden";
       document.documentElement.style.height = "100%";
       document.body.style.overflow = "auto";
       document.body.style.height = "100%"; 
    

    }

提交回复
热议问题