我注意到Cordova中的一个错误,当滚动浏览页面时,滚动上的固定元素会消失(通常在我快速滚动时)
有关为何发生这种情况的任何想法?
我在这里提出了问题的GIF Imgur
html,
body {
height: 100%;
min-height: 100%;
font-family: 'Montserrat';
width: 100vw;
overflow-x: hidden;
touch-action: manipulation;
-webkit-overflow-scrolling: auto;
}
.elementFixed {
position: fixed;
z-index: 10;
top: 0;
left: 0;
width: 100%;
}