/*-----------------------------------------------------------*/ /*copyright by 动力无限 www.btoe.cn*/ /*邮箱 btoe@btoe.cn*/ /*合作电话 400-0599-360*/ /*版权所有违者必究*/ /*-----------------------------------------------------------*/ // 顶部显示 $(function () { $('#xunpantext').hover(function () { var xunpantext = $(this).data('tiptitle'); $('#xunpantip').css({ top: $(this).outerheight(true) + 8 + 'px' }); $('#xunpantip').text(xunpantext); $('#xunpantip').addclass('xunpantextactive'); }, function () { $('#xunpantip').removeclass('xunpantextactive') }) }) $(function () { var stop = 0; var x = $("#fixednav").offset().top; $(window).scroll(function () { stop = $(this).scrolltop(); if (stop >= 1) { $("#fixednav").addclass("fixednav"); } else { $("#fixednav").removeclass("fixednav"); } }); });