代码:

<!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>无标题页</title>
<link id="link1" rel="Shortcut Icon" href="1.ico" />
</head>
<body style="cursor:url(1.cur); height:100%;">
<script type="text/javascript">
var bo = true;
var title = document.title;
window.setInterval(
function(){
document.title
= (bo?'[信]':'[★]') + title;
bo
= !bo;
},
500);
</script>
设置为100毫秒时,火狐正常,IE、Chrome都不正常。
</body>
</html>

注意 改变document.title的时间间隔设置为100毫秒时,火狐正常,IE、Chrome都不正常。

设置浏览器小图标 <link />

改变鼠标样式 <body style="cursor:url(1.cur); ">

相关文章:

  • 2022-12-23
  • 2021-11-24
  • 2021-06-18
  • 2021-06-26
  • 2021-08-16
  • 2021-05-28
  • 2021-12-07
  • 2021-12-13
猜你喜欢
  • 2022-02-10
  • 2022-12-23
  • 2022-02-14
  • 2021-12-26
  • 2021-09-03
  • 2021-09-29
  • 2022-12-23
相关资源
相似解决方案