让Alt提示框不消失(转)

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>自定义ALT注释效果,不消失</title></head>
<body>

<h4>自定义ALT注释效果,不消失</h4>
<span alt="好孩子^O^">注释效果1,鼠标移过来</span><br><br>
<span alt="好孩子^O^" altbg="red" altcolor=yellow altborder="yellow">注释效果2,鼠标移过来</span><br><br>
<span alt="好孩子^O^" altbg="#F7F7F7" altcolor="#999999" altborder="#CCCCCC">注释效果3,鼠标移过来</span><br><br>
<span alt="好孩子^O^" altbg="green" altcolor=yellow altborder="darkgreen">注释效果4,鼠标移过来</span><br><br>
<span alt="好孩子^O^" altbg="#000000" altcolor="#FFFFFF" altborder="#000000">注释效果5,鼠标移过来</span>
<div style="display:none;border:1px solid #000000;background-color:#FFFFCC;font-size:12px;position:absolute;padding:2;" id=altlayer></div>
<script>
document.body.οnmοusemοve=quickalt;
document.body.οnmοuseοver=getalt;
document.body.οnmοuseοut=restorealt;
var tempalt='';
function getalt()
{
	if(event.srcElement.alt && (event.srcElement.alt!='' || (event.srcElement.alt=='' && tempalt!='')))
	{
		altlayer.style.left=event.x;
		altlayer.style.top=event.y+20;
		altlayer.style.display='';
		tempalt=event.srcElement.alt;
		tempbg=event.srcElement.altbg;
		tempcolor=event.srcElement.altcolor;
		tempborder=event.srcElement.altborder;
		event.srcElement.alt='';
		altlayer.innerText=tempalt;
		if (typeof(tempbg)!="undefined"){altlayer.style.background=tempbg}else{altlayer.style.background="#FFFFCC"}
		if (typeof(tempcolor)!="undefined"){altlayer.style.color=tempcolor}else{altlayer.style.color=tempcolor="#000000"}
		if (typeof(tempborder)!="undefined"){altlayer.style.border='1px solid '+tempborder;}else{altlayer.style.border='1px solid #000000';}
	}
}
function quickalt()
{
	if(altlayer.style.display=='')
	{
		altlayer.style.left=event.x;
		altlayer.style.top=event.y+10;
	}
}

function restorealt()
{
	event.srcElement.alt=tempalt;
	tempalt='';
	altlayer.style.display='none';
}
</script>
</body></html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值