⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tryit_view.asp@filename=trydhtml_menu_cursor

📁 W3Schools tutorial..web designing
💻 ASP@FILENAME=TRYDHTML_MENU_CURSOR
字号:
<html>
<head>
<style>
body
{
background:#000000;
color:#00FF00;
font-weight:bold;
}
a{color:#CCCCCC;}
</style>

<script type="text/javascript">
function cursor(text)
{
trail.innerHTML=text;
trail.style.visibility="visible";
trail.style.position="absolute";
trail.style.left=event.clientX+10;
trail.style.top=event.clientY;
}

function hidecursor()
{
trail.style.visibility="hidden";
}
</script>

</head>
<body>

<h1>Mouse over these links</h1>

<a href="../default.asp" onmousemove="cursor('Visit W3Schools.com')" onmouseout="hidecursor()">W3Schools.com</a><br />
<a href="../../www.altavista.com/default.htm" onmousemove="cursor('Go to AltaVista')" onmouseout="hidecursor()">AltaVista</a><br />
<a href="../../www.yahoo.com/default.htm" onmousemove="cursor('Search with Yahoo!')" onmouseout="hidecursor()">Yahoo!</a><br />

<span id="trail" style="visibility:hidden">Hello</span>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -