维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <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="../images/smiley.gif" alt="Smiley" width="32" height="32"> <p>Функція bigImg() запускається, коли користувач наводить вказівник миші на зображення.</p> <p>Функція normalImg() запускається, коли вказівник миші переміщується за межі зображення.</p> </body> </html>