📄 examplesimplerollover.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Example: Simple roll-over effect</title>
<style type="text/css">
</style>
<script type="text/javascript">
function rollover(img,url){
document.images[img].src=url;
}
</script>
</head>
<body>
<a href="contact.html"
onmouseover="rollover('contact','but_contact_on.gif')"
onmouseout="rollover('contact','but_contact.gif')">
<img src="but_contact.gif" name="contact"
width="103" height="28" alt="Contact Us" border="0" />
</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -