按钮动画

来源:互联网 发布:域名权重批量查询工具 编辑:程序博客网 时间:2024/05/14 10:17
//按钮动画
<html>
<head>
<script type="text/javascript">
function mouseOver()
{
document.b1.src ="/i/eg_mouse.jpg"
}
function mouseOut()
{
document.b1.src ="/i/eg_mouse2.jpg"
}
</script>
</head>


<body>
<a href="/index.html" target="_blank">//在新窗口打开链接
<img border="0" alt="Visit W3School!" src="/i/eg_mouse2.jpg" //alt鼠标滑过显示提示信息


name="b1"  onmouseover="mouseOver()" onmouseout="mouseOut()" /></a>
</body>
</html>
0 0
原创粉丝点击