我在这里找到并修改了一种创建文本到图像翻转的好方法:http: //jsfiddle.net/pkZAW/12/
$( function() {
$("#imglink").hover(
function () {
$(this).attr('small',$(this).html());
$(this).html($(this).attr('full'));
},
function () {
$(this).html($(this).attr('small'));
}
);
});
但是,我需要淡入淡出的过渡,就像这里的缩略图一样:http: //lydiafraserward.co.uk/index.php ?page=produce
经过大量搜索,我无法将此过渡添加到脚本中:-?.. 有任何想法吗..?