简单教程
提交运行
代码编辑器:
<script> function bigImg(x) { x.style.height="200px"; } function normalImg(x) { x.style.height="100px"; } </script> <img onmousemove="bigImg(this)" onmouseout="normalImg(this)" border="0" src="/static/i/img1.jpg" height="100"> <p>当用户将鼠标移动到图片时触发 bigImg() 函数。该函数使图片变大</p> <p>当用户将鼠标移开时触发normalImg() 函数。该函数使图片变回原来大写</p>
运行结果: