我正在为iOS和Android构建Cordova应用程序,因此自然会有很多不同的屏幕尺寸。
我的一些观点有完整的背景图片。我的问题是:
最好使用一个覆盖最大潜在设备的大图像,并将其用于所有设备,或者使用大量不同的图像,使用媒体查询将每个图像分配给正确的设备?
在这里寻找最佳实践。
答案 0 :(得分:1)
我建议使用2732 x 2048(今天最大的iPad screen size)以及cover,百分比或viewport背景css大小调整的图像。例如:
http://play.ionic.io/app/094f73be9047
CSS
ion-content {
background-image: url(https://upload.wikimedia.org/wikipedia/commons/6/6c/Keeny-creek-wv-autumn-waterfall-scenery_-_West_Virginia_-_ForestWander.jpg);
background-size: cover;
text-align: center;
}
ion-content p {
padding: 20px 0;
color: white;
font-weight: 100;
font-size: xx-large;
}
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="https://code.ionicframework.com/1.0.0/css/ionic.min.css" rel="stylesheet">
<script src="https://code.ionicframework.com/1.0.0/js/ionic.bundle.js"></script>
</head>
<body ng-app="app">
<ion-pane>
<ion-header-bar class="bar-positive" class="bar-stable">
<h1 class="title">Awesome App</h1>
</ion-header-bar>
<ion-content class="padding">
<p>I am so beautiful</p>
<button class="button button-positive">I'm a button</button>
</ion-content>
</ion-pane>
</body>
</html>
答案 1 :(得分:0)
您是否有办法将该图像用作图案。这样做就不会出现不同屏幕尺寸的问题。