紅框為懸浮 左右可以滑動 效果如下⬇️
懸浮把最外層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; }