この記事の例では、JS が oumousemove と oumouseout を使用して画像表示を動的に変更する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
マウスを写真の上に置くと、写真は自動的に大きくなり、マウスを離すと写真が元に戻ります
<!DOCTYPE html> <html> <head> <script> function bigImg(x) { x.style.height="64px"; x.style.width="64px"; } function normalImg(x) { x.style.height="32px"; x.style.width="32px"; } </script> </head> <body> <img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32"> <p>The function bigImg() is triggered when the user moves the mouse pointer over the image.</p> <p>The function normalImg() is triggered when the mouse pointer is moved out of the image.</p> </body> </html>
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。