说明:需要客户端与H5配合才能实现如下效果:
客户端代码:
let webview = WKWebView(frame: view.bounds)
view.addSubview(webview)
webview.backgroundColor = .clear
webview.isOpaque = false
Html代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>abc</title>
</head><body style="overflow:hidden;background-color:rgba(0,0,0,0.3);">
<h1>标题 标题标题</h1>
<p>段落 段落段落段落段落</p>
</body>
</html>
网友评论