美文网首页IOS开发
WKWebView 背景透明方案

WKWebView 背景透明方案

作者: 明谣_罗潇 | 来源:发表于2021-07-21 15:05 被阅读0次

    说明:需要客户端与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>
    

    直播客户端效果截图:

    IMG_30FABDAAC079-1.jpeg

    相关文章

      网友评论

        本文标题:WKWebView 背景透明方案

        本文链接:https://www.haomeiwen.com/subject/fdejmltx.html