この記事の例では、マウスが小さな画像の上をスライドしたときに大きな画像を表示するメソッドを jquery がどのように実装するかを説明します。皆さんの参考に共有してください。具体的な実装方法は以下の通りです。
$("div").first().append(smallPath);
//サムネイルにイベントを追加します
smallPath.mouseover(function(){
//最後の div フェードイン効果
$("div").last().fadeIn("fast");
// 全体像のアドレスを取得します
$("#show").attr("src",$(this).attr("bigMapPath"));
// 大きな画像の名前を取得し、スタイルを設定します
$("#imgTitle").text($(this).attr("bigMapName")).css({"background":"#ebf1de","padding":"10px","margin-bottom":" 10px"});
});
smallPath.mouseout(function(){
$("div").last().fadeOut("fast");
});
});
});