javascript マウスオーバーで画像を切り替える

javascript マウスオーバーで画像を切り替える

javascriptで、イベントハンドラのonmouseoverを使用して、マウスオーバー時に画像を切り替えるサンプルコードを記述してます。

環境

  • OS windows11 pro 64bit
  • Apache 2.4.43
  • ブラウザ chrome 106.0.5249.103

onmouseover使い方

「onmouseover」と「onmouseout」を使用すれば、マウスオーバー時に行う処理とマウスアウト時に行う処理を設定することが可能です。このイベントを使用して画像を切り替えます。

<img id="pic" src="mebee1.png" onmouseover="hoge();" onmouseout="foo();" />

<script>

//マウスオーバー時の処理を記述
function hoge(){
  let elm = document.getElementById("pic");
  elm.src = "mebee2.png"; // 画像を変更する
}

//マウスアウト時の処理を記述
function foo(){
  let elm = document.getElementById("pic");
  elm.src = "mebee1.png"; // 画像を元に戻す
}

</script>

実行結果

イベントを設定しても、同じです。

<img id="pic" src="mebee1.png" />

<script>

let elm = document.getElementById("pic");

// マウスオーバーイベントを設定
elm.onmouseover = function () {
  elm.src = "mebee2.png";
};

// マウスアウトイベントを設定
elm.onmouseout = function () {
  elm.src = "mebee1.png";
};

</script>

イベントリスナーにも登録できます。

<img id="pic" src="mebee1.png" />

<script>

let elm = document.getElementById("pic");

// マウスオーバーイベントを設定
elm.addEventListener( 'mouseover', function () {
  elm.src = "mebee2.png";
});

// マウスアウトイベントを設定
elm.addEventListener( 'mouseout', function () {
  elm.src = "mebee1.png";
});

</script>

また、javascript部はwindowオブジェクトやdocument.getElementByIdを省略して「id名」のみで記述することも可能です。関数もアロー関数を使用できます。

<img id="pic" src="mebee1.png" />

<script>

// マウスオーバーイベントを設定
pic.addEventListener('mouseover', () => {
    pic.src = "mebee2.png";
});

// マウスアウトイベントを設定
pic.addEventListener('mouseout', () => {
    pic.src = "mebee1.png";
});

</script>

サンプルコード

以下は、
マウスオーバーすると画像を変更して、マウスアウトすると画像を元に戻す
サンプルコードとなります。

※cssには「bootstrap material」を使用してます。

<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>mebeeサンプル</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
  <link rel="stylesheet"
    href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css">
</head>
<style>
  .main {
    margin: 0 auto;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 35px;
  }
</style>
<script>

  window.onload = function () {

    let elm = document.getElementById("pic");
    let txt = document.getElementsByClassName("card-text")[0];

    // マウスオーバーイベントを設定
    elm.onmouseover = function () {
      elm.src = "https://images.unsplash.com/photo-1600335894314-bd5413779668?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80";
      txt.textContent = "マウスオーバー中";
    };

    // マウスアウトイベントを設定
    elm.onmouseout = function () {
      elm.src = "https://images.unsplash.com/photo-1600335895229-6e75511892c8?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80";
      txt.textContent = "マウスオーバーで画像を切り替え";
    };

  }

</script>

<body>
  <div class="main">

    <div class="card" style="width: 18rem;">
      <img id="pic" class="card-img-top"
        src="https://images.unsplash.com/photo-1600335895229-6e75511892c8?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80">
      <div class="card-body">
        <p class="card-text">マウスオーバーで画像を切り替え</p>
      </div>
    </div>

  </div>
</body>

</html>

切り替わっていることが確認できます。