美文网首页
链接闪烁功能

链接闪烁功能

作者: 丁白一 | 来源:发表于2018-01-22 10:55 被阅读0次

链接闪烁功能是提醒用户使用。

功能示例


链接颜色闪烁功能示例
<!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>

注意:

setInterval("changeColor()",300);中的300是闪烁时长。

相关文章

网友评论

      本文标题:链接闪烁功能

      本文链接:https://www.haomeiwen.com/subject/sxclaxtx.html