feat/task1-c-wallet
devil_gong 2018-09-10 12:22:33 +08:00
parent 47e1c58eb6
commit 2201adc572
1 changed files with 2 additions and 2 deletions

View File

@ -49,14 +49,14 @@ $(function()
{ {
if(!$('#goods-category .category-content').is(":visible")) if(!$('#goods-category .category-content').is(":visible"))
{ {
$('#goods-category .category-content').slideDown(200); $('#goods-category .category-content').slideDown(100);
} }
} }
}).mouseleave(function() { }).mouseleave(function() {
if($(this).data('controller-name') != 'Index') if($(this).data('controller-name') != 'Index')
{ {
$('#goods-category .category-content').slideUp(300); $('#goods-category .category-content').slideUp(100);
} }
}); });