問題1
1.去除.pinned { position: fixed !important;}
在第6行中的文件(materialize.min.css)。
2.使用下面JS
$('.vh100').css('position', 'absolute')// to add aboslute position by default.
$(window).scroll(function() {
if ($(window).scrollTop() > 48) // nav bar height is 48 px
{
$('.vh100').css('position', 'fixed'); // add position fixed if scrolling is done and scroll top is greater than 48 px which is the nav bar
$('.vh100').css('margin-top', '-48px'); // when scroll up you have assign negative margin-top so that the space will not be appeared.
} else {
$('.vh100').removeAttr('style'); // remove margin-top
$('.vh100').css('position', 'absolute'); // and add position absolute
}
});
問題2(ExternalJava210.html - >行:3273)
add和被點擊時.menu-toggle
除去的.vh100
位置。
你想要正確的div被修復嗎?我的意思是它應該總是顯示? –
,你說什麼是問題,但我想你忘了提到你的期望 –
Santhosh:是的,我想右側的容器div保持固定。左側包含用戶應該能夠滾動的測試,因爲它們可以有100個。右側有詳細信息,一次只能查看一個測試細節,因此在用戶滾動左側部分時應保持固定。希望澄清。 – Anshoo