iOS真机上scroll-view中textarea在position:fixed区域内的显示bug
发布于 6 年前 作者 gdeng 6171 次浏览 来自 官方Issues

ios 真机中scroll-view中fixed的区域没有相对于屏幕定位而是相对于scroll-view定位,fixed区域中的textarea框也会跟随scroll-view滚动位置发生变化。

.fixed {

  position: fixed;

  left: 0;

  right: 0;

  bottom: 0;

  background: #f90;

  padding: 10rpx;

  z-index: 2;

} 模拟器效果:

ios真机效果:

回到顶部