组织门户二级菜单延迟隐藏
This commit is contained in:
parent
b32693ca2a
commit
c2e7a77150
|
@ -191,16 +191,16 @@
|
||||||
</body>
|
</body>
|
||||||
<script>
|
<script>
|
||||||
$(".nav-element").mouseover(function(){
|
$(".nav-element").mouseover(function(){
|
||||||
$(this).next(".sn-grey-opacity").show();
|
$(this).next(".sn-grey-opacity").show(0);
|
||||||
});
|
});
|
||||||
$(".sn-grey-opacity").mouseover(function(){
|
$(".sn-grey-opacity").mouseover(function(){
|
||||||
$(this).show();
|
$(this).show(0);
|
||||||
});
|
});
|
||||||
$(".nav-element").mouseout(function(){
|
$(".nav-element").mouseout(function(){
|
||||||
$(this).next(".sn-grey-opacity").hide();
|
$(this).next(".sn-grey-opacity").delay(150).hide(0);
|
||||||
});
|
});
|
||||||
$(".sn-grey-opacity").mouseout(function(){
|
$(".sn-grey-opacity").mouseout(function(){
|
||||||
$(this).hide();
|
$(this).delay(150).hide(0);
|
||||||
});
|
});
|
||||||
$(".sn-sub-nav").each(function(){
|
$(".sn-sub-nav").each(function(){
|
||||||
$(this).children(".sn-subnav-slice:last").hide();
|
$(this).children(".sn-subnav-slice:last").hide();
|
||||||
|
|
|
@ -33,16 +33,16 @@
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$(".nav-element").mouseover(function(){
|
$(".nav-element").mouseover(function(){
|
||||||
$(this).next(".sn-grey-opacity").show();
|
$(this).next(".sn-grey-opacity").show(0);
|
||||||
});
|
});
|
||||||
$(".sn-grey-opacity").mouseover(function(){
|
$(".sn-grey-opacity").mouseover(function(){
|
||||||
$(this).show();
|
$(this).show(0);
|
||||||
});
|
});
|
||||||
$(".nav-element").mouseout(function(){
|
$(".nav-element").mouseout(function(){
|
||||||
$(this).next(".sn-grey-opacity").hide();
|
$(this).next(".sn-grey-opacity").delay(150).hide(0);
|
||||||
});
|
});
|
||||||
$(".sn-grey-opacity").mouseout(function(){
|
$(".sn-grey-opacity").mouseout(function(){
|
||||||
$(this).hide();
|
$(this).delay(150).hide(0);
|
||||||
});
|
});
|
||||||
$(".sn-sub-nav").each(function(){
|
$(".sn-sub-nav").each(function(){
|
||||||
$(this).children(".sn-subnav-slice:last").hide();
|
$(this).children(".sn-subnav-slice:last").hide();
|
||||||
|
|
Loading…
Reference in New Issue