Cordova固定元素在滚动上消失

时间:2017-12-12 20:39:30

标签: html css cordova css-position fixed

我注意到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%;
}

0 个答案:

没有答案