Difference between revisions of "Template:NAU-CHINA/header"

Line 183: Line 183:
  
 
<script>
 
<script>
 +
 
   $(document).ready(function () {
 
   $(document).ready(function () {
    $('.menu > ul > li > ul:not(:has(ul))').addClass('normal-sub');
+
      $('.menu > ul > li > ul:not(:has(ul))').addClass('normal-sub');
    //导航背景变色+下滑方法
+
      $(".menu > ul > li").hover(function (e) {
    $(".menu > ul > li").hover(function () {
+
        $(this).css({"background-color":"#f0f0f0"});
      $(this).css({"background-color":"#f0f0f0"});
+
        $(this).children("ul").stop(true, false).slideToggle(300);
      $(this).children("ul").stop(true, false).slideToggle(300);
+
          e.preventDefault();
    });
+
      });
    //背景颜色还原+下拉菜单消失
+
      $(".menu > ul > li").mouseleave(function (e) {
    $(".menu > ul > li").mouseleave(function () {
+
        $(this).css({"background-color":"#fff"});
      $(this).css({"background-color":"#fff"});
+
        $(this).children("ul").hide();
      $(this).children("ul").hide();
+
        e.preventDefault();
    });
+
      });
 
   });
 
   });
 
</script>
 
</script>

Revision as of 08:12, 3 October 2018