Как насчет добавления .show()
и .hide()
?
(function(){
$('.boxcaption').css({'display': 'none'})
$('.boxgrid.captionfull').hover(function(){
$(".cover", this).stop().hide().fadeIn(160);
}, function() {
$(".cover", this).stop().show().fadeOut(160);
});
})();
Или вы также можете сбросить свойство непрозрачности до:
(function(){
$('.boxcaption').css({'display': 'none'})
$('.boxgrid.captionfull').hover(function(){
$(".cover", this).stop().css("opacity","1").fadeIn(160);
}, function() {
$(".cover", this).stop().css("opacity","0").fadeOut(160);
});
})();