Mobile Safari不会将背景渐变图像与背景颜色混合

时间:2012-07-26 02:51:58

标签: html css mobile-safari background-image

我有一个经典的背景图片渐变,淡出到给定的背景颜色,请参阅http://fiddle.jshell.net/7msZ5/代码。

问题在于,在Mobile Safari(iPhone 4上的第5版)上查看时,图像无法成功融入背景色,图像底部有一条可见线,图像应该是背景图像接管,查看http://fiddle.jshell.net/7msZ5/show/以查看效果。

1 个答案:

答案 0 :(得分:0)

我建议扩展渐变图像,使其更早达到灰色(因此灰色是您想要的阴影而不是1个阴影的阴影),或使用 -webkit-gradient(某些较旧的浏览器可能不支持它....)

示例:

background: url(http://i.imgur.com/ajzo0.jpg) rgb(145,127,103); /* Old browsers (in case they don't support webkit, use the original image. */
background: -moz-linear-gradient(top, rgba(145,127,103,1) 0%, rgba(236,235,233,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(145,127,103,1)), color-stop(100%,rgba(236,235,233,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(145,127,103,1) 0%,rgba(236,235,233,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(145,127,103,1) 0%,rgba(236,235,233,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(145,127,103,1) 0%,rgba(236,235,233,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(145,127,103,1) 0%,rgba(236,235,233,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#917f67', endColorstr='#ecebe9',GradientType=0 ); /* IE6-9 */
是的,这是更多的代码,但它确实完成了工作。