这个函数如何把导航条给去掉

$(function() {
// 悬浮窗口
$(".yb_conct").hover(function() {
$(".yb_conct").css(“right”, “5px”);
$(".yb_bar .yb_ercode").css(‘height’, ‘200px’);
}, function() {
$(".yb_conct").css(“right”, “-127px”);
$(".yb_bar .yb_ercode").css(‘height’, ‘53px’);
});
// 返回顶部
$(".yb_top").click(function() {
$(“html,body”).animate({
‘scrollTop’: ‘0px’
}, 2)
});
});

巨宏网络 www.johotop.com

@Ma
发布了3 篇原创文章 · 获赞 2 · 访问量 533

猜你喜欢

转载自blog.csdn.net/youeyeb/article/details/104680932