/** * Created by Administrator on 2017/10/16. */ $(function(){ var str = ''; $(".tec_text_part").mouseover(function(){ $(this).addClass("box-Shadow"); }).mouseout(function(){ $(this).removeClass("box-Shadow"); }); $(".nav>li.on>a").append(str); $(".navbar-nav>li").mouseenter(function(){ $(this).find(".icon").css("background","url('wp-content/themes/hoko/images/icon_.png')"); $(this).find(".sub-menu").stop(true,true).slideDown(); }).mouseleave(function(){ $(this).find(".icon").css("background","url('wp-content/themes/hoko/images/icon.png')"); $(this).find(".sub-menu").slideUp(); }); $(".sub-menu>li").mouseenter(function(){ $(this).parents(".on").children("a").css("color","#15559d"); $(this).css("background","#f5f5f5"); $(this).children("a").css({"color":"#15559d"}); }).mouseleave(function(){ $(this).css("background","#fff"); $(this).parents(".on").children("a").css("color","#333333"); $(this).children("a").css({"color":"#333333"}); }); $(".list").mouseenter(function(){ $(this).children(".row").addClass("show"); $(this).siblings().children(".row").removeClass("show"); }); });