我刚刚开始使用Wordpress Twenty Twelve儿童主题进行前端开发。
我想让我的背景全屏响应。 我跟着这篇文章:Full-screen responsive background image,因为它正是我正在寻找的。 p>
但是当我将这个css代码复制并粘贴到我的style.css:
时img.bg {
/* Set rules to fill background */
min-height: 100%;
min-width: 1024px;
/* Set up proportionate scaling */
width: 100%;
height: auto;
/* Set up positioning */
position: fixed;
top: 0;
left: 0;
}
@media screen and (max-width: 1024px) { /* Specific to this particular image */
img.bg {
left: 50%;
margin-left: -512px; /* 50% */
}
}
它不起作用。感觉img.bg不存在。 这是我的current website。
请帮忙!没有这个我不能继续前进,我落后于时间表:( 谢谢你的时间!
答案 0 :(得分:0)
你需要2使用jscript instd。 例如:
var theWindow = jQuery(window),
jQuerybg = jQuery("#bg"),
aspectRatio = jQuerybg.width() / jQuerybg.height();
function resizeBg() {
if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
jQuerybg
.removeClass()
.addClass('bgheight');
} else {
jQuerybg
.removeClass()
.addClass('bgwidth');
}
}
theWindow.resize(function() {
resizeBg();
}).trigger("resize");
答案 1 :(得分:0)
这样做有一个很好的方法:
div
{
position: absolute; width: 100%; height: 100%;
background-image:url('smiley.gif');
background-repeat:no-repeat;
background-size:cover;
}
关键是背景尺寸:封面; line - 无论窗口大小如何,它都会调整大小。请查看http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=cover