羅賓,
嗯...所以VH能真正實現一個非常類似的效果。雖然(1500x100),您的示例圖像是相當極端的。
看看這個小提琴我做了(使用你的代碼爲基礎): https://jsfiddle.net/Benihana77/5xw21tvc/
*,
*:before,
*:after {
box-sizing: inherit;
}
html {
height: 100%;
box-sizing: border-box;
position: relative;
}
body {
position: relative;
margin: 0;
padding-bottom: 100px;
min-height: 100%;
}
#header {
width: 100%;
padding: 10px;
margin-right: auto;
margin-left: auto;
position: fixed;
background-color: #fff;
background: rgb(255, 255, 255);
/* Fall-back for browsers that don't support rgba */
background: rgba(255, 255, 255, 0.92);
text-align: center;
z-index: 1;
}
#gallery-wrapper {
position: relative;
padding-top: 60px;
overflow-x: scroll;
}
#gallery-wrapper img {
height: 70vh;
width: auto;
}
#footer {
font-family: Corda-Light;
font-size: 14px;
color: #333;
width: 100%;
padding: 5px;
padding-top: 13px;
padding-bottom: 8px;
padding-left: auto;
padding-right: auto;
position: absolute;
bottom: 0;
background-color: #efefef;
text-align: center;
background-color: #fff;
background: rgb(255, 255, 255);
/* Fall-back for browsers that don't support rgba */
background: rgba(255, 255, 255, 0.9);
z-index: 1;
}
/* Navigation Bar Styling */
.nav {
border-bottom: 1px solid #ccc;
border-width: 1px 0;
list-style: none;
margin: 0;
padding: 0;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
.nav li {
display: inline;
}
.nav a {
display: inline-block;
padding: 10px;
}
/* Horizontal Gallery Styling */
ul.gallery-row {
white-space: nowrap;
}
ul.gallery-row li {
list-style: none;
display: inline;
}
/* Footer Styling */
.footer {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
.footer img:hover {
opacity: 0.6;
filter: alpha(opacity=60);
}
主業變更
加在你的內容的包裝更好的管理(內的jsfiddle和出)。
將您的頁腳更改爲絕對定位,以及一系列其他更改,這些更改允許它堅持到底部,直到視口太短。然後它像普通頁腳一樣被推下去。這使您的內容不會落在頁腳後面。
用「overflow-x:scroll」製作了「gallery-wrapper」。我個人不喜歡橫向滾動的畫廊,但如果你的心已經放在它上面,這將保持包含在這個塊中的橫向滾動,並且不會讓你的整個網站(反過來不需要「固定」頁腳)。
選擇一些更逼真的圖像尺寸來處理,並縮短vh(70)。
關於您的示例,盡我所知,他們使用JavaScript來重寫「scrollHolder」容器DIV的高度。所以他們的解決方案不僅僅是CSS,而是使用JS來讀取瀏覽器的高度並相應地調整高度。
我也會說他們的方法有缺陷,因爲它不能正確縮放到瀏覽器寬度。在較薄的屏幕上,您只能看到每個圖像的放大部分。
因此,除了上述變化,我建議:
嘿本,我還沒有機會在今天之前看看這個,但非常感謝您的幫助!我已經做了一些我自己的調整,但是使用你的代碼作爲跳板來儘可能地接近我想要的。我很想知道你會做什麼,而不是側面滾動畫廊來顯示圖像?這是一個非常流行的商業攝影網站格式。 你在想什麼「燈箱」呢? –
很高興我有任何幫助。如果你願意,可以擲+1。至於水平滾動,我主要就是爲了避免沒有控件的水平滾動條。除非你在觸摸屏上,否則它不是用戶友好的,並且它仍然在那裏挑剔。如果周圍有一組強大的腳本,可以讓用戶輕鬆點擊或輕掃,那麼它就非常好。 –
爲擴大您的答案而歡呼。我給了你一個+1,但因爲我是新手,所以我的信譽得分意味着+1不會顯示在屏幕上。我收到一條消息說它已被註冊。 TA! –