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を変更して新しい矢印を表示しても、2つの矢印の間にフェード効果を作成できるかどうかを知りたいです。
もちろんできます!
$("a.arrow").fadeOut(1000, function(){ $(this).find("img").attr("src", "newurl"); $(this).fadeIn(1000); });
デモを見る - 標準
デモを見る - オーバーレイされた画像