jquery マウスオーバーにより画像を切り替える
jqueryで、マウスオーバーにより画像を切り替えるサンプルコードを記述してます。「val」メソッドを使用してます。
環境
- OS windows10 pro 64bit
- jquery 3.6.0
- Apache 2.4.43
- ブラウザ chrome 91.0.4472.77
マウスオーバーにより画像を切り替える
マウスオーバーにより画像を切り替えるには「mouseover」を使用します。
$('要素を指定').on('mouseover',function(){
// 処理
});
以下は、マウスオーバーにすと画像が切り替わり、離れると画像がもとに戻るサンプルコードを記述してます。
※デザインは「semantic-ui」を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<!-- semantic.css -->
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
<script src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<style>
body>.grid {
height: 100%;
}
.fields {
margin-top: 5px;
}
</style>
<script>
$(function () {
$('#img').on('mouseover', function () {
$(this).attr('src', 'sample.jpg');
});
$('#img').on('mouseleave', function () {
$(this).attr('src', 'bar.jpg');
});
})
</script>
<body>
<div class="ui middle aligned center aligned grid">
<div class="column">
<div class="ui small image">
<img id="img" src="/bar.jpg">
</div>
</div>
</div>
</body>
</html>
切り替えされていることが確認できます。
また、以下のようにアロー関数を使用して記述することも可能です。
※アロー関数を使用するとthisの挙動が異なります。
$(() => {
$('#img').on('mouseover', () => {
$('#img').attr('src', 'sample.jpg');
});
$('#img').on('mouseleave', () => {
$('#img').attr('src', 'bar.jpg');
});
})
-
前の記事
windows11 wingetで「google chrome」をインストールする 2022.04.29
-
次の記事
javascript エラー「RangeError: Arguments contain a value that is out of range of code points」の解決方法 2022.04.30
コメントを書く