试图让我的网站响应

时间:2013-09-10 20:34:48

标签: css

我正在使用以下css代码。我想要做的是,如果用户在iPad上,我希望背景图像是headerold.jpg或某种方式使当前的headernew.jpg能够在iPad上正确显示。目前每一端的一部分被切断。我试过@media查询,但我无法让代码工作。任何帮助,将不胜感激。

感谢罗杰

div.art-header-jpeg
{
position: absolute;
top: 0;
left:-50%;
width: 1344px;
height: 150px;
background-image: url('../img/headernew.jpg');
@media all and (max-width: 1000px) {background-image: url('../img/headerold.jpg');}
background-repeat: no-repeat;
background-position: center center;
}

2 个答案:

答案 0 :(得分:0)

你可以这样做。

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 a particular image (change accordingly*/
  img.bg {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

然而,有不同的方法,包括JQuery方法。你应该查看一些关于它的讨论here

答案 1 :(得分:0)

我正在努力让headernew.jpg正确地在iPad上显示以及其他电脑屏幕,但首先只是iPad。如果我删除位置:绝对,则完整标题向右移动,仅显示标题的大约50%。是否有一些我需要添加的内容,如同在另一篇文章中建议的那样..

<meta name="viewport" content="width=device-width, initial-scale=1"> 

如果是的话应放在哪里?

我的代码现在看起来像这样;

 div.art-header-jpeg
{
position: absolute;
top: 0;
left:-50%;
width: 1344px;
height: 150px;
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { 
div.art-header-jpeg 
background-image: url('../img/headernew.jpg');
}
background-repeat: no-repeat;
background-position: center center;
}