组织门户二级目录显隐

chenlw_dev
huang 9 years ago
parent 9c18b37349
commit 5133338923

@ -188,13 +188,13 @@
<script> <script>
$(".nav-element").mouseover(function(){ $(".nav-element").mouseover(function(){
$(this).next().show(); $(this).next(".sn-grey-opacity").show();
}); });
$(".sn-grey-opacity").mouseover(function(){ $(".sn-grey-opacity").mouseover(function(){
$(this).show(); $(this).show();
}); });
$(".nav-element").mouseout(function(){ $(".nav-element").mouseout(function(){
$(this).next().hide(); $(this).next(".sn-grey-opacity").hide();
}); });
$(".sn-grey-opacity").mouseout(function(){ $(".sn-grey-opacity").mouseout(function(){
$(this).hide(); $(this).hide();

Loading…
Cancel
Save