...
|
...
|
@@ -34,14 +34,12 @@ if ($.inArray(homePage, ['boys','girls','kids','lifestyle']) > -1) { |
|
|
});
|
|
|
}
|
|
|
|
|
|
$(".imgopacity")
|
|
|
.on("mouseenter", "a img", function() {
|
|
|
$(this).css("opacity", 0.8)
|
|
|
})
|
|
|
.on("mouseenter", "a img", function() {
|
|
|
$(this).css("opacity", 1);
|
|
|
$(document).on("mouseenter",".imgopacity a img",function(){
|
|
|
$(this).css('opacity', 0.8);
|
|
|
});
|
|
|
|
|
|
$(document).on("mouseout",".imgopacity a img",function(){
|
|
|
$(this).css('opacity', 1);
|
|
|
})
|
|
|
|
|
|
lazyLoad($('img.lazy'));
|
|
|
if (homePage === 'boys') {
|
...
|
...
|
|