分享好友 教程首页 教程搜索 频道列表

让网页标签页头部有新消息提醒和Title标题文字滚动显示效果

2021-12-24 23:433760
+关注29
核心提示:demo展示HTML!DOCTYPEhtmlPUBLIC-//W3C//DTDXHTML1.0Transitional//ENhttp://www.w...

demo展示HTML

<!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" />
    <title>让网页的Title标题文字滚动显示效果</title>
</head>
<body bgcolor="#ffffff" onload="newtext()">
    <script language=javascript>
        var text = document.title
        var timerID
        function newtext() {
            clearTimeout(timerID)
            document.title = text.substring(1, text.length) + text.substring(0, 1)
            text = document.title.substring(0, text.length)
            timerID = setTimeout("newtext()", 100)
        }
    </script>
</body>
</html>


demo展示2HTML

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="UTF-8"/>
        <title>JS实现title标题闪烁提示信息</title>
    </head>
    <body>
        <script type="text/javascript">
            _record = 0;
            var myTitle = document.title;

            function titleBlink() {
                _record++;
                if(_record == 3) { //当变量_record累加到3是,将其赋值为1。相当于无限循环。
                    _record = 1;
                }
                if(_record == 1) {
                    document.title = '【  】' + myTitle;
                }
                if(_record == 2) {
                    document.title = '【新消息】' + myTitle;
                }
                setTimeout("titleBlink()", 500); //调节时间,单位毫秒。
            }
            titleBlink();
        </script>
    </body>
</html>


本文标签: #提醒 #通知
整理员:小黑
免责声明:凡注明来源本网的所有作品,均为本网合法拥有版权或有权使用的作品,欢迎转载,注明出处。非本网作品均来自互联网,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。
生成海报
您可能在找更多

DESTOON程序-会员30天到期提醒模板消息实现

    这类模板消息可以利用系统的计划任务,定时执行通知如下,是一个会员到期30天的计划任务在计划任务目录api/cron 里建一个文件 如:vip通知viptongzhi.inc.php文件内容为:?phpdefined('IN_DESTOON') or exit('Access Denied');$atime = strtotime(date("Y-m-d"),time())+2592000;$btime = strtotime(date("

小黑 开发技术 12019-11-18

下一篇
我来说两句
抢沙发