首頁 > web前端 > js教程 > JS使用oumousemove和oumouseout動態改變圖片顯示的方法_javascript技巧

JS使用oumousemove和oumouseout動態改變圖片顯示的方法_javascript技巧

WBOY
發布: 2016-05-16 16:06:40
原創
1583 人瀏覽過

本文實例講述了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程式設計有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板