2011-09-22 145 views
0

我想給漸變的UIWebView的背景,我加載爲:iPhone:UIWebview漸變背景與CSS可能?

[self.webView loadHTMLString:customHtml baseURL:nil]; 

但這個網站行並不給出的效果,任何人都知道如何更好地做到這一點,也可以解決這個問題的CSS?

[customHtml appendString:[NSString stringWithFormat:@"%@ ", @" <body style='background-color:#4b95bf; webkit-gradient(linear, left top, left bottom, from(#55aaee), to(#003366));'>"]]; 

回答

1

的CSS是不正確webkit-gradient()不是財產,而是-webkit-gradient()是一種價值。

相反的HTML應該包含:

[customHtml appendString:[NSString stringWithFormat:@"%@ ", @" <body style='background-color:#4b95bf; background-image:-webkit-gradient(linear, left top, left bottom, from(#55aaee), to(#003366));'>"]]; 

注意-webkit-gradient之前和現在background-image:

+0

TNX但我還有一個問題,梯度只適用於可見區域,當我滾動網頁流量梯度重新開始,有什麼想法? – Spring

+0

請看http://stackoverflow.com/questions/7526176/iphoneuiwebview-gradient-back-ground-starts-over-when-scrolling-down-the-content – Spring