zoukankan      html  css  js  c++  java
  • 可以闪动的假消息提示代码

    <html xmlns=""> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>像QQ一样的闪动消息</title> <script> var styChangeTimes=0; function changeSty(id) { obj=document.getElementById(id); styChangeTimes = styChangeTimes+1; if((styChangeTimes%2)==0) obj.style.display="none"; else obj.style.display=""; if(styChangeTimes<200) { window.setTimeout("changeSty('"+id+"')",200); } else { styChangeTimes=0; obj.style.display=""; } } </script> </head> <body οnlοad="changeSty('qpsh_com')"> <div align="center"> <table border="0" width="300" cellpadding="0" style="border-collapse: collapse" height="30" id="table1"> <tr> <td><div id="qpsh_com" > <img border="0" src="icon/images/xinxi.jpg" width="14" height="14"><span style="font-size: 9pt"> <a href="http://zygxsq.kuaizhan.com/"> <span style="text-decoration: none"><font color="#FF0000">您有3条新的消息</font></span></a></span></div></td> </tr> </table> </div> </body> </html>


  • 相关阅读:
    hdfs 复制路径下所有文件
    吐槽scala
    scala
    spark 你要喧宾夺主么?好好干。
    信赖域算法
    scala shuffle
    自动梯度求解 反向传播算法的另外一种视角
    spark 2.0 Vector toBreeze
    自己玩的git
    js判断浏览器
  • 原文地址:https://www.cnblogs.com/jalenFish/p/14099121.html
Copyright © 2011-2022 走看看