搜索附件  
自丢网 附件中心 模板下载 网页特效 菜单导航代码 jQuery电商网站左侧商品分类导航菜单代码.zip

热门下载

左侧广告
版权所有:自丢网
For 2020-2050 © zidiu.com

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

 

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


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

  1. js代码

  2. <script type="text/javascript">
  3. $(function() {
  4.         var $top = $('.sec-mainNav').offset().top + $('.sec-mainNav').height()
  5.         //左侧导航动画
  6.         $('.sec-mainNav li').on('mouseenter', function() {
  7.                 var $height = $(this).offset().top + $(this).find('.menu-panel').outerHeight();
  8.                 $(this).find('.menu-panel').show();
  9.                 if($height - $top >= 0) {
  10.                         $(this).find('.menu-panel').css({
  11.                                 top: -($height - $top) + 'px'
  12.                         })
  13.                 }
  14.         });
  15.         $('.sec-mainNav li').on('mouseleave', function() {
  16.                 $(this).find('.menu-panel').hide();
  17.         });
  18. });
  19. </script>
复制代码