Tag: 背景图像

background-size:封面不适用于iOS

这是我的代码: background-color:#fff; background-attachment:fixed; background-repeat:no-repeat; background-size:cover; -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-position: center center; 它在桌面,iPad和Android手机上工作: 在Chrome浏览器和iPhone上的Safari上,背景太大:

你如何做一个背景图像缩放到迅速的屏幕大小?

我试图使用模式图像快速地为我的背景制作一个UIView图像。 我的代码运行良好,除了我希望图像占据整个屏幕的事实。 我的代码如下所示: self.view.backgroundColor = UIColor(patternImage: UIImage(named: "backgroundImage")!) 有谁知道如何使背景成为一个图像,将占用整个屏幕,并会出现在不同的iPhone屏幕尺寸时缩放?