0

我刚刚开始使用 Wordpress 二十十二儿童主题进行前端开发。

我想让我的背景全屏响应。我遵循这篇文章:全屏响应背景图像,因为它正是我正在寻找的。

但是当我将此 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 不存在。这是我目前的网站

请帮忙!没有这个,我无法继续前进,而且我落后于计划:(谢谢你的时间!

4

2 回答 2

0

You need 2 use the jscript instd. As exmpl:

        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");
于 2013-08-17T02:21:03.897 回答
0

There's a nice css way of doing this:

div
{
position: absolute; width: 100%; height: 100%;
background-image:url('smiley.gif');
background-repeat:no-repeat;
background-size:cover;
}

The key is the background-size: cover; line - it will resize no matter what the window size. Check it out at http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=cover

于 2013-08-17T02:23:20.087 回答