uniapp取消頁面捲軸的方法:1、在【app.vue】的頁面中設定全域css樣式屬性;2、在【page.json】設定預設屬性,程式碼為【"scrollIndicator": "none"】。
本教學操作環境:windows7系統、uni-app2.5.1版本,DELL G3電腦,此方法適用於所有品牌電腦。
推薦(免費):uni-app開發教學
uniapp取消頁面滾動條的方法:
第一種
在app.vue的頁面中設定全域css樣式屬性
//第一种 scroll-view ::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; -webkit-appearance: none; background: transparent; } //第二种 ::-webkit-scrollbar{ display: none; }
第二種
在page.json設定預設屬性
//第一种 这是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页面都不显示滚动条 } }
#相關免費學習推薦:程式設計影片
以上是uniapp如何取消頁面捲軸的詳細內容。更多資訊請關注PHP中文網其他相關文章!