中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
import { webview } from '@kit.ArkWeb'; @Entry @Component export struct TestScrollPage { private URL: string = 'https://mbmodule-staticres.paas.cmbchina.com/mb5web/default.html'; private controller: WebviewController = new webview.WebviewController() build() { Scroll(){ Column(){ Web({ src: this.URL, controller: this.controller }) .onPageBegin(()=>{ }) .onPageEnd(()=>{ console.error("web load finish") }) .width("100%") // .height("100%") .domStorageAccess(true) .layoutMode(WebLayoutMode.FIT_CONTENT) // .zoomAccess(false) // // .overviewModeAccess(true) // .imageAccess(true) // .onlineImageAccess(true) // .fileAccess(true) // .databaseAccess(true) Column() { Text('联系我们').fontColor(Color.Black) .fontWeight(500).fontSize(18) } .height(50) } .width("100%") } .width('100%') .height("100%") .scrollBar(BarState.On) } }