让浏览器状态栏动起来
2008-02-23 07:38:54来源:互联网 阅读 ()
要实现这样的特效并不是很难,下面就介绍几种这种特效的应用实例:
一、眨眼式
当浏览器打开网页时,下面的状态栏就会像眨眼睛似地出现文本提示信息(提示的内容可以改成你所需要的任意内容)。
<script language=″JavaScript″>
!--
var yourwords =″欢迎光临网页教学网(http://www.webjx.com)″;
var speed = 1000;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status=″ ″;
control=1;
}
setTimeout(″flash();″,speed);
}
flash();
</script>
二、冒泡式
当浏览器打开网页时,下面的文本就像是冒泡一样,一个字一个字地出现,提示信息同样可以改变成你自己的内容。
把下面的代码放到主页中的<body>和</body>之间即可
<script language=″JavaScript″>
<!--
var msg =″欢迎光临网页教学网″;
var interval =300
var spacelen = 120;
var space10=″ ″;
var seq=0;
function Scroll() {
len = msg.length;
window.status = msg.substring(0, seq+1);
seq++;
if ( seq 〉= len ) {
seq = 0;
window.status = ′ ′;
window.setTimeout(″Scroll();″, interval );
}
else
window.setTimeout(″Scroll();″, interval );
}
Scroll();
</script>
三、标题栏出现
当浏览器打开网页时,上面的标题栏就会移动出现一行提示信息,提示信息可随你改变。
把下面的代码放到主页中的<body>和</body>之间即可
<script language=″JavaScript″>
<!--Hide me
file://″index_count″ is subtracted from ″title_length″ to get the first # of the substring method
var index_count = 0;
// What you want to scroll in the title bar
var title_string =″欢迎光临网页教学网(http://www.webjx.com)!″;
// length of title string
var title_length = title_string.length;
// Variable for setTimeout()
var cmon;
// Counter for clearTimeout()
var kill_length = 0;
function loopTheScroll()
{
scrollTheTitle();
// If greater than length of string then stop calling itself
if(kill_length 〉 title_length)
{
clearTimeout(cmon);
}
kill_length++;
// Calls itself 10x per second - change the value to speed up or slow down the scroll (in 1/1000th of a second)
cmon = setTimeout(″loopTheScroll();″,100)
}
function scrollTheTitle()
{
// Difficult to explain, must be familiar w/ the substring method
var doc_title = title_string.substring((title_length - index_count - 1),title_length);
// put doc_title in the title bar
document.title = doc_title;
index_count++;
}
loopTheScroll();
file://--〉
</script>
上面是几个简单的特效实例,你自己可以设计出更多这样的特效形式,修改成你自己的特殊风格。怎么样?赶紧在你的主页里动手试试吧。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:禁止用右键查看源代码
下一篇:网页自适应不同浏览器和分辨率
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash