ホームページ > 記事 > ウェブフロントエンド > jQuery_jqueryをベースにマウスオーバー効果を作成する方法
この記事の例では、jQuery に基づいてマウス ホバー効果を作成する方法を説明します。皆さんの参考に共有してください。具体的な実装方法は以下の通りです。
1. HTML を作成します:
<ul> <li><a href="/tv"><img src="images/tv_off.gif" class="mainnav"></a></li> </ul>
2. .mainnav のクラスを選択します:
$(".mainnav").hover( function () { }, function () { } );
3. 変数 imgPath を作成し、画像 SRC を指定します:
$(".mainnav").hover( function () { // Grab the source var imgPath = $(this).attr("src"); }, function () { // Grab the source var imgPath = $(this).attr("src"); } );
4. 文字列 off を見つけて、on に置き換えます。
$(".mainnav").hover( function () { // Grab the source var imgPath = $(this).attr("src"); // Replace the path in the source $(this).attr("src",imgPath.replace("off", "on")); }, function () { // Grab the source var imgPath = $(this).attr("src"); // Replace the path in the source $(this).attr("src",imgPath.replace("on", "off")); } );
この記事が皆さんの jQuery プログラミングに役立つことを願っています。