webview的一些设置

来源:互联网 发布:5g网络建设 编辑:程序博客网 时间:2024/06/06 09:39
设置UIWebView的背景颜色为透明

  [_webView setBackgroundColor:[UIColor clearColor]];
  [_webView setOpaque:NO];


关闭 UIWebView 的滚动效果

    UIScrollView *tempView=(UIScrollView *)[webView.subviews objectAtIndex:0];
    tempView.scrollEnabled=NO;


- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    //字体大小
//    [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '330%'"];
//    //字体颜色
//    [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName('body')[0].style.webkitTextFillColor= 'gray'"];
    //页面背景色
    [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName('body')[0].style.background='#FFFEC7'"];
}

亲测有效

未完待续...

0 1
原创粉丝点击