1. 程式人生 > >小程序之 fixed定位下scroll-view左右滾動失效

小程序之 fixed定位下scroll-view左右滾動失效

class info 小程序 左右滑動 src 設置 strong fix 我沒

紅框為懸浮 左右可以滑動 效果如下??

技術分享圖片

懸浮把最外層position:fixed;top:0;這個時候上面的導航就可以懸浮

但是會出現左右滑動不了的情況

這是因為我沒給設置寬度

這個時候我們把包著scroll-view的那個view設置寬度為100%就可以了

.hd {
  width: 100%;
  z-index: 1;
  position: fixed;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

小程序之 fixed定位下scroll-view左右滾動失效