【发布时间】:2015-06-20 19:55:00
【问题描述】:
我正在尝试将粘性导航栏添加到我的“Lexus Extroic”opencart 模板中。这个非常困难。我的代码:
<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
【问题讨论】:
-
请去阅读How to Ask。