组织门户二级目录显隐

chenlw_dev
huang 9 years ago
parent 5133338923
commit d9b0c654aa

@ -33,13 +33,13 @@
<script> <script>
$(document).ready(function(){ $(document).ready(function(){
$(".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