1

我正在使用以下 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;
}
4

2 回答 2

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 方法。你应该在这里查看一些关于它的讨论。

于 2013-09-10T20:41:07.727 回答
0

我试图让 headernew.jpg 正确显示在 iPad 以及其他计算机屏幕上,但首先只是 iPad。如果我删除 position: absolute 那么完整的标题会向右移动并且只显示大约 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;
}
于 2013-09-10T21:51:07.180 回答