我想对网站上的背景进行响应式图像排列。
例如,根据不同的屏幕分辨率,我希望加载不同的背景图像。如果我可以定义不同的行为,那将是有用的;例如,较高分辨率的桌面将具有较大的拉伸背景图像,而上网本可能具有较小版本的缩小以适应,或者3GS iPhone将具有较小的平铺图像。
您将如何实施此类方案?
答案 0 :(得分:5)
我相信这会帮助您解决问题。今天我通过一个不相关的Google探险遇到了以下图书馆:eCSSential。它看起来像是票。您可以使用库来检测屏幕大小,并加载适当的CSS文件,同时考虑当前视口和当前设备的屏幕大小。非常漂亮。
结合我的回答的前一部分,我相信你会有一个很好的方法来处理你的问题。
以下只是您可以查询的屏幕尺寸示例,但您明白了。可以为每个场景设置背景样式。
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
/* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
/* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
}
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
}
/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
}
/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
/* Styles */
}
/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
/* Styles */
}
/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}
对于任何分辨率,背景的样式可以不同,例如:
@media only screen
and (min-device-width : [width])
and (max-device-width : [width]) {
body {
background-image: url('../img/image.png');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
// or you could just center the image if it's bigger than the current viewport
// background-position: center center;
}
}
信用:大部分内容来自CSS Tricks
答案 1 :(得分:2)
您可以根据屏幕尺寸投资一点jquery来改变背景。以下是您可以执行的操作的示例:
if ( $(window).width() < 1000 ) {
$('body').css('background','url("yourimage")';
} else {
$('body').css('background','url("yourimage")';
}
如果你有片刻,你介意告诉我们你尝试了什么吗?
答案 2 :(得分:1)
this article中讨论了一些方法。最后一种方法可能正是您所寻找的。它包含一个用于检查窗口大小和设置背景的JavaScript函数。
答案 3 :(得分:1)
您可以使用CSS-Tricks上解释的CSS3全页背景图像,然后在必要时使用jQuery Fallback。在Gaya Design Blog
上有一篇关于jQuery方法的好文章CSS:
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
使用@apttap指定的@media
查询方法以及此CSS代码段,您可以使用每个设备像素比率的多个背景图像。