我想使頁面縮放或移動兼容我認爲是術語。我的網頁現在的問題是它看起來不錯,但是當我拖動瀏覽器時,我的頁面的背景圖片覆蓋了「服務」標題<section>
部分。拖動瀏覽器導致背景圖像重疊下一節
這裏是jsFiddle:http://jsfiddle.net/eg18dfy0/4/不知道這將是多麼有用,因爲本地文件不包括在這裏。
正常:
Dragging功能:
這裏是我的代碼:
HTML代碼段的事項:
<header>
<div class="background_image">
</div>
<div class="welcome-text-container">
<div class="row">
<div class="welcome-text1">Welcome!</div>
<div class="welcome-text2">BE GOOFY, TAKE A PICTURE!</div>
<div class="btn-row">
<a href="#services" class="welcome-btn btn-lg">TELL ME MORE</a>
</div>
</div>
</div>
</header>
<!-- services -->
<section id="services">
<div class="container">
<div class="service-title">Services</div>
<div class="service-caption">What we'll do for you</div>
</div>
</section>
CSS:
.background_image {
background-image: image-url("header-bg.jpg");
background-size: contain;
background-repeat: no-repeat;
width: 100%;
height: 0;
padding-top: 66.64%;
position: absolute;
/* (img-height/img-width * width) */
/* (853/1280 * 100) */
}
/* Services */
#services {
padding-top: 110px;
margin-top: 75px;
}
.service-title {
text-align: center;
font-size: 55px;
font-weight: 700;
}
.service-caption {
text-align: center;
font-size: 20px;
}
您可以使用小提琴左側的「外部資源」選項卡包含外部資源。如果它不能重現問題,那麼創建小提琴就沒有意義。 –
或更改'image-url(「header-bg.jpg」)'到你服務器上的文件的url – artm
這樣做^^^^^^^^ – Timothy