允许缩略图 rc attr 在主图像窗口中替换图像 。
$(document).ready(function(){
var originalimg = $( #imageMain img ).attr( src );
$(".subImage").hover(function(){
var currentimg = $(this).attr( src );
$( .mainImage ).fadeOut(function () {
$( .mainImage ).attr( src , currentimg).fadeIn();
});
},function(){
$( .mainImage ).fadeOut(function() {
$( .mainImage ).attr( src , originalimg).fadeIn();
})
});
});
Currently the behaviour does the following: 1. hover over - main image fades to white, then fades into the sub image. 2. mouse out - main image fades to white, then is replaced with the original.
我真正需要的东西 而不是在两个图像状态之间的白色转变 我希望它们能有某种重叠( 所以一个会随着另一个消失而消失)
有可能吗?
感谢 谢谢