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

jQuery电商网站左侧商品分类导航菜单代码-精品资源网
jQuery电商网站左侧商品分类导航菜单代码
此内容为免费资源,请登录后查看
0
免费资源

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

jQuery电商网站左侧商品分类导航菜单代码,一款购物商城常用的网站左侧导航悬停显示更多分类、热门分类和商家品牌logo布局样式。

js代码

<script type=\"text/javascript\">
$(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();
	});
});
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容