uniapp webview 加载网页进度条
时间: 2023-08-19 19:04:38 浏览: 377
swift版webview加载网页进度条效果
在 UniApp 中使用 WebView 加载网页时,可以通过监听 WebView 的加载事件来实现进度条的显示。以下是一个简单的示例代码:
1. 在页面的 `template` 中添加一个进度条组件:
```html
<view>
<progress class="webview-progress" :percent="progress" strokeWidth="2" activeColor="#007AFF" backgroundColor="#E5E5EA" ></progress>
</view>
```
2. 在页面的 `script` 中定义相
阅读全文