Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>鼠标移动图标提示内容</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<script>
function show(tips,flag,url){
var my_tips=document.all.mytips;
if(flag){
my_tips.style.display="";
if (url!=null){my_tips.innerHTML="<img src='"+url+"'align=left>"+tips;}
else{ my_tips.innerHTML=tips;}
my_tips.style.left=event.clientX+10;
my_tips.style.top=event.clientY+10;
}
else
{
my_tips.style.display="none";
</script>
<a href="#" tips="自定义提示<br/>手册网的Logo" onmousemove=show(this.tips,1) onmouseout=show(this.tips,0)><img src="/images/logo.gif" border="0"></a>
<a href="#" tips="又一个自定义提示" onmousemove=show(this.tips,1) onmouseout=show(this.tips,0)><img src="/images/logo.gif" border="0"></a>
<a href="#" tips="这同样是一个自定义提示" onmousemove=show(this.tips,1) onmouseout=show(this.tips,0)><img src="/images/logo.gif" border="0"></a>
<div id=mytips style="position:absolute;width:202;height:50; border: 1px solid #CCCCCC;font-size: 12px;background-color:#265490;color:#FFFFFF;display:none;filter: Alpha(Opacity=60);padding-right: 6px; padding-left: 6px;padding-top: 6px; padding-bottom: 6px;">
</div>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx