一般活动页面之类简单的背景图内容布局方式

 

css:

.bg { width: 100%;height:auto; }

.content{width:100%;min-height:100px;}

 

html:

<div id="img_bg"><img class="bg" src="/zhannew/statics/images/cdz/red-input-bg.png" ></div>

<div class="content"></div>

 

js:

addLoadEvent(layoutFix);

function layoutFix(){

  var img_height = $('.bg').height();
      $('.content').height(img_height);
      $('.content').css('margin-top','-'+img_height+'px');

}

function addLoadEvent(func) {
    var old_onload = window.onload;
    if (typeof window.onload != 'function') {
        window.onload = func;
    }
    else{
        old_onload();
        func();
    }
}

posted @ 2016-08-18 15:23  wifix  阅读(391)  评论(0编辑  收藏  举报