链接闪烁功能是提醒用户使用。
功能示例
![](https://img.haomeiwen.com/i3880524/dd134f519f559173.gif)
<!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><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>链接颜色闪烁功能</title>
<body>
<div align="center"><a href="" target="_blank" id="bling" >链接颜色闪烁功能</a></div>
<script language="javascript">
function changeColor(){
var color="#f00|#0f0|#00f|#880|#808|#088|yellow|green|blue|gray";
color=color.split("|");
document.getElementById("bling").style.color=color[parseInt(Math.random() * color.length)];
}
setInterval("changeColor()",300);
</script>
</body></html>
网友评论