0

所以我需要一些帮助。

我做了这个设置,我需要一些图像总是全屏(缩放以适应)放置在里面的 div。这就是我已经走了多远,无论我做什么,我都无法让它发挥作用。我真的希望有人能帮我解决这个问题,这让我发疯了!我试图输入这样的代码

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;

但随后图像消失了......这是整个代码。

HTML

<div class="wrapper">
    <div class="navigation_top">
    <ul>
        <li>Btn_1</li>
        <li>Btn_2</li>
        <li>Btn_3</li>
        <li>Btn_4</li>
        <li>Btn_5</li>
    </ul>
    </div>

    <div class="navigation_side">
       <ul>        
          <li><a href="#slice1" id="btn_1" class="anchorLink">slice1</a></li>
          <li><a href="#slice2" id="btn_2" class="anchorLink">slice2</a></li>
          <li><a href="#slice3" id="btn_3" class="anchorLink">slice3</a></li>
           <li><a href="#slice4" id="btn_4" class="anchorLink">slice4</a></li>
           <li><a href="#slice5" id="btn_5" class="anchorLink">slice5</a></li>
       </ul>
    </div>

    <div id="slice1"></div>
    <div id="slice2"></div>
    <div id="slice3"></div>
    <div id="slice4"></div>
    <div id="slice5"></div>
</div>

CSS

html, body {height:100%; color:#FFF;}

ul, ol, li {margin:0px!important; padding:0px!important;}

.wrapper {width:100%; height:100%;}
.navigation_top {width:100%; height:50px; line-height:50px; background-color:#000; opacity:.5; position:fixed;}
.navigation_top ul {list-style:none;}
.navigation_top ul li {float:left; width:100px; text-align:center;}
.navigation_top ul li a {display:block; color:#FFF; text-decoration:none;}



.navigation_side {width:200px; height:auto; position:fixed; background-color:#000; opacity:.5; margin-top:10%;}
.navigation_side ul li a {color:#FFF; text-decoration:none;}


#slice1 {width:100%; height:100%; background:url(http://img405.imageshack.us/img405/6018/image1uii.jpg);}
#slice2 {width:100%; height:100%; background-color:#999;}
#slice3 {width:100%; height:100%; background-color:#888;}
#slice4 {width:100%; height:100%; background-color:#777;}
#slice5 {width:100%; height:100%; background-color:#666;}

查询

jQuery(document).ready(function($) {

    $(".anchorLink").click(function(event){        
        event.preventDefault();
        $('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
    });

    $('.navigation_top').hide();

    $(window).scroll(function() {
        // the 10 below is the number of pixels down to show the menu
        if ($(this).scrollTop() > 10) $('.navigation_top').show();
        else $('.navigation_top').hide();
    });
});

这也是我的进步:http: //jsfiddle.net/iBertel/qLTQ9/

4

1 回答 1

0

您确定这是适合屏幕的最佳方式吗?仅仅因为对图像分辨率的关注,我会以不同的方式处理它。

我会这样做的方式是我首先检查屏幕的宽度/高度。然后我将其与图像的宽度/高度进行比较。然后,如果图像比屏幕大,我会将其压缩,这样我就可以将其适应屏幕。

如果图像小于屏幕,那么我将图像在 div 中居中并将 div 背景的颜色设置为漂亮(例如,如果这与您的站点颜色匹配,请确保它是黑色 div)。

请记住,您必须检查图像相对于屏幕的宽度/高度。例如,如果图像对于屏幕来说太宽,但没有那么高,那么图像应该在保持宽/高比的情况下按比例缩小,这样它就会在你的 div 内显示为一个水平矩形。这样您的图像就不会失真。

于 2012-11-15T17:44:29.287 回答