如何为“-hover”图像指定确切的文件路径目录(翻转效果)?目前,这仅适用于位于子目录中的图像。
$(function(){
$('.box-img').append('<span></span>').hover(
function(){
$(this).find('img').stop().animate({opacity:0})
}, function(){
$(this).find('img').stop().animate({opacity:1})
}
).each(function(){
var src=new Array()
src=$(this).find('img').attr('src').split('.')
src=src[0]+'-hover.'+src[1]
$(this).find('>span').css({background:'url('+src+')'})
});
})