Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站有和箭头 png,当鼠标悬停在箭头上方时,我希望出现不同颜色的箭头。我知道该怎么做,但我想知道的是我是否可以在两个箭头之间创建淡入淡出效果,即使我通过更改原始箭头的 src 来显示新箭头。
当然可以!
$("a.arrow").fadeOut(1000, function(){ $(this).find("img").attr("src", "newurl"); $(this).fadeIn(1000); });
见演示 - 标准
见演示 - 图像叠加