So deaktivieren Sie die Seiten-Bildlaufleiste in Uniapp: 1. Legen Sie das globale CSS-Stilattribut in der Seite [app.vue] fest. 2. Legen Sie das Standardattribut in [page.json] fest. Der Code lautet [„scrollIndicator“: „keine“] .
Die Betriebsumgebung dieses Tutorials: Windows7-System, Uni-App2.5.1-Version, DELL G3-Computer. Diese Methode ist für alle Computermarken geeignet.
Empfohlen (kostenlos): Uni-App-Entwicklungs-Tutorial
Uniapp-Methode zum Abbrechen der Seiten-Bildlaufleiste:
Die erste
Legen Sie den globalen CSS-Stil auf der app.vue-Seite fest Attribut
//第一种 scroll-view ::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; -webkit-appearance: none; background: transparent; } //第二种 ::-webkit-scrollbar{ display: none; }
Der zweite Typ
Legen Sie das Standardattribut in page.json fest
//第一种 这是app的不显示滚动条可以在当前页面中添加 "app-plus":{ "scrollIndicator":"none" //当前页面不显示滚动条 } //也可以直接(不知道生效不生效,我俩种全搞上) "scrollIndicator": "none" //示例代码 { "path": "pages/content/index", "style": { "navigationBarTitleText": "", "app-plus":{ "scrollIndicator":"none" //当前页面不显示滚动条 }, "scrollIndicator": "none" } } //第二种 直接全局搞就ok "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "我是王小白", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8", "scrollIndicator": "none", "app-plus":{ "scrollIndicator":"none" //全局 在APP页面都不显示滚动条 } }
Verwandte kostenlose Lernempfehlungen: Programmiervideo
Das obige ist der detaillierte Inhalt vonSo deaktivieren Sie die Seiten-Bildlaufleiste in Uniapp. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!