-3
我想添加粘性導航欄到我的「雷克薩斯Extroic」opencart模板。這個非常困難。我的代碼:css jquery sticky navbar前景
<script>
$(document).ready(function() {
$(document).scroll(function() {
var scroll = $(this).scrollTop();
var topDist = $("#header-layout").position();
if (scroll > topDist.top) {
$('nav').css({"position":"fixed","top":"0"});
} else {
$('nav').css({"position":"static","top":"auto"});
}
});
});
</script>
但是結果並不好。下面是結果的頁面: http://45.55.74.161/index.php?route=common/home
這裏是我的原始模板: http://azbay.az
請去看[問]。 – CBroe