0
我一直在嘗試修復我正在處理的網站上的主要網格。 我的目標是讓儘可能少的媒體查詢。靈活的標題,保持標誌圖像的縱橫比
我需要徽標圖像來保持標題的高度,而不是縮小。
對於時間軸標題基本上是一樣的,但是這個也需要保持時間軸的寬度。
我嘗試了不同的解決方案,但似乎沒有一個適合我。可能這是js的時間嗎? (調整大小)
$(window).resize(function() {
var windowHeight = $(window).height();
var headerHeight = $('div#header').outerHeight(true)
var footerHeight = $('div#footer').outerHeight(true);
var contentHeight = windowHeight - (footerHeight + headerHeight);
var contentMargins = $('div#content').outerHeight(true) - $('div#content').height();
var contentInnerHeight = contentHeight - contentMargins;
$('div#content').height(contentInnerHeight);
}).resize();
所以,如果有人知道的東西,那會超級棒。 :)
我上傳的基本電網這裏提琴:https://jsfiddle.net/hansgohr/62xLfewa/
也是「滿」的網站可以在這裏看到:http://ocv-2300.net/scrollmagic/ - 這裏的時間軸標頭工作得很好。
粘性Såmycket!完美工作,再加上我能解決很多其他問題。 – hans