欢迎光临
我们一直在努力

discuz 门户页面支持导航顶部固定

建站超值云服务器,限时71元/月

目录 网上的方法,在需要顶部固定的页面加一句代码:,<!–{if empty($_G[‘setting’][‘disfixednv_forumindex’]) }–><script>fixed_top_nv();</script><!–{/if}–>,复制代码,亲测此方法成功过,也失败过。,如果不管用,也可以使用下面代码:,

<style type="text/css">
.floatnv{position:fixed;_position:absolute;top:0px;z-index:999;width:100%;}
</style>
<script language="javascript" type="text/javascript">
    (function() {
        var oDiv = document.getElementById("nv");
        var H = 0, iE6;
        var Y = oDiv;
        while (Y) {
            H += Y.offsetTop;
            Y = Y.offsetParent;
        };
        iE6 = window.ActiveXObject && !window.XMLHttpRequest;
        if (!iE6) {
            window.onscroll = function() {
                var s = document.body.scrollTop || document.documentElement.scrollTop;
                if (s > H) {
                    oDiv.className = "floatnv";
                    if (iE6) {
                        oDiv.style.top = (s - H) + "px";
                    }
                } else {
                    oDiv.className = "";
                }
            }
        }
    })();
</script>

,document.getElementById(“nv”);对应的是id=”nv”的元素。,目录 网上的方法,在需要顶部固定的页面加一句代码: <!–{if empty($_G[‘setting’][‘disfixednv_forumindex’]) }–><script>fixed_top_nv();</script><!–{/if}–> 复制代码 亲测此方法成功过,也失败过。 如果不管用,也可以使用下面代码:

<style type="text/css">
.floatnv{position:fixed;_position:absolute;top:0px;z-index:999;width:100%;}
</style>
<script language="javascript" type="text/javascript">
    (function() {
        var oDiv = document.getElementById("nv");
        var H = 0, iE6;
        var Y = oDiv;
        while (Y) {
            H += Y.offsetTop;
            Y = Y.offsetParent;
        };
        iE6 = window.ActiveXObject && !window.XMLHttpRequest;
        if (!iE6) {
            window.onscroll = function() {
                var s = document.body.scrollTop || document.documentElement.scrollTop;
                if (s > H) {
                    oDiv.className = "floatnv";
                    if (iE6) {
                        oDiv.style.top = (s - H) + "px";
                    }
                } else {
                    oDiv.className = "";
                }
            }
        }
    })();
</script>

document.getElementById(“nv”);对应的是id=”nv”的元素。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » discuz 门户页面支持导航顶部固定
分享到: 更多 (0)