700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > PHP淘宝左侧商品分类 jQuery电商网站左侧商品分类导航菜单代码

PHP淘宝左侧商品分类 jQuery电商网站左侧商品分类导航菜单代码

时间:2021-06-06 08:16:18

相关推荐

PHP淘宝左侧商品分类 jQuery电商网站左侧商品分类导航菜单代码

js代码

$(function() {

var $top = $('.sec-mainNav').offset().top + $('.sec-mainNav').height()

//左侧导航动画

$('.sec-mainNav li').on('mouseenter', function() {

var $height = $(this).offset().top + $(this).find('.menu-panel').outerHeight();

$(this).find('.menu-panel').show();

if($height - $top >= 0) {

$(this).find('.menu-panel').css({

top: -($height - $top) + 'px'

})

}

});

$('.sec-mainNav li').on('mouseleave', function() {

$(this).find('.menu-panel').hide();

});

});

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。