...
|
...
|
@@ -404,13 +404,6 @@ define('yohood', function(require, exports) { |
|
|
event.stopPropagation();
|
|
|
return false;
|
|
|
});
|
|
|
$(".brand-list").on("mouseenter", "li > a", function(event) {
|
|
|
var $img = $(this).find("img");
|
|
|
$img.removeClass("grey-brand-logo");
|
|
|
}).on("mouseleave", "li > a", function() {
|
|
|
var $img = $(this).find("img");
|
|
|
$img.addClass("grey-brand-logo");
|
|
|
})
|
|
|
//隐藏
|
|
|
$('.overlay').on('click', function() {
|
|
|
$(this).hide();
|
...
|
...
|
|