站内搜索: 请输入搜索关键词

当前页面: 开发资料首页Javascript 专题网页状态栏特效全攻略

网页状态栏特效全攻略

摘要: 网页状态栏特效全攻略
<tr> <td>

在上网时我们注意往往是网站页面内容,而状态栏不会被人太多注意,如果我们给页面的状态栏加一些特效,肯定会使你的网站增添一道风景,下面就给大家介绍7种常见的状态栏特效的Javascript代码。

特效一:滚动显示

第一步:把如下代码加入<head>区域中

<table width="59%" border=1> <tr> <td class=content bgColor=#999999><script language="Javascript">

第二步:把如下代码加入<body>区域中

<table width="34%" border=1> <tr> <td class=content bgColor=#999999><body background=bag.gif onLoad="scrollit(100)"></td></tr></table>

特效二:文字从状态栏的右边循环弹出

把如下代码加入<head>区域中

<table width="68%" border=1> <tr> <td class=content bgColor=#999999><script language="Javascript">
var MESSAGE = " 欢迎来到赛迪网,请多提意见。谢谢! "
var POSITION = 150
var DELAY = 10
var scroll = new statusMessageObject()
function statusMessageObject(p,d) {
this.msg = MESSAGE
this.out = " "
this.pos = POSITION
this.delay = DELAY
this.i = 0
this.reset = clearMessage}
function clearMessage() {
this.pos = POSITION}
function scroller() {
for (scroll.i = 0; scroll.i < scroll.pos; scroll.i++) {
scroll.out += " "}
if (scroll.pos >= 0)
scroll.out += scroll.msg
else scroll.out = scroll.msg.substring(-scroll.pos,scroll.msg.length)
window.status = scroll.out
scroll.out = " "
scroll.pos--
if (scroll.pos < -(scroll.msg.length)) {
scroll.reset()}
setTimeout ('scroller()',scroll.delay)}
function snapIn(jumpSpaces,position) {
var msg = scroll.msg
var out = ""
for (var i=0; i{out += msg.charAt(i)}
for (i=1;i{out += " "}
out += msg.charAt(position)
window.status = out
if (jumpSpaces <= 1) {
position++
if (msg.charAt(position) == ' ')
{position++ }
jumpSpaces = 100-position
} else if (jumpSpaces > 3)
{jumpSpaces *= .75}
else
{jumpSpaces--}
if (position != msg.length) {
var cmd = "snapIn(" + jumpSpaces + "," + position + ")";
scrollID = window.setTimeout(cmd,scroll.delay);
} else { window.status=""
jumpSpaces=0
position=0
cmd = "snapIn(" + jumpSpaces + "," + position + ")";
scrollID = window.setTimeout(cmd,scroll.delay);
return false }
return true}
snapIn(100,0);
</script>
</td></tr></table>

特效三:title弹出效果

把如下代码加入<head>区域中

<table width="77%" border=1> <tr> <td bgColor=#999999>

<script language="javascript">

kill_length++;
cmon = setTimeout("loopTheScroll();",100)
}

function scrollTheTitle()
{
var doc_title = title_string.substring((title_length - index_count - 1),title_length);
document.title = doc_title;

index_count++;
}
loopTheScroll();
//
</script>

</td></tr></table>

特效四:文字组合弹出

第一步:把如下代码加入<head>区域中

<table width="56%" border=1> <tr> <td bgColor=#999999>

<script language="javascript">

ar[0] = "欢迎来到赛迪网! "
ar[1] = "它是您学校电脑的好帮手! "
ar[2] = "请多提意见,谢谢! "

var message = 0
var state = ""
clearState()
function stopBanner() {
if (bannerRunning)
clearTimeout(timerID)
bannerRunning = false
}

function startBanner() {
stopBanner()
showBanner()
}
function clearState() {
state = ""
for (var i = 0; i < ar[message].length; ++i) {
state += "0"
}
}
function showBanner() {
if (getString()) {
message++
if (ar.length <= message)
message = 0
clearState()
timerID = setTimeout("showBanner()", pause)
bannerRunning = true
} else {
var str = ""
for (var j = 0; j < state.length; ++j) {
str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " "
}
window.status = str
timerID = setTimeout("showBanner()", speed)
bannerRunning = true
}
}
function getString() {
var full = true
for (var j = 0; j < state.length; ++j) {
if (state.charAt(j) == 0)
full = false
}
if (full)
return true
while (1) {
var num = getRandom(ar[message].length)
if (state.charAt(num) == "0")
break
}
state = state.substring(0, num) + "1" + state.substring(num + 1, state.length)
return false
}
function getRandom(max) {
return Math.round((max - 1) * Math.random())
}
// -- End Hiding Here
</script>

</td></tr></table>

第二步:把如下代码加入<body>区域中

<table width="32%" border=1> <tr> <td class=content bgColor=#999999><body bgcolor="#fef4d9" onLoad="startBanner()"></td></tr></table>

特效五:文字不停闪烁

第一步:把如下代码加入<head>区域中

<table width="73%" border=1> <tr> <td class=content bgColor=#999999><script language="">

第二步:把如下代码加入<body>区域中

<table width="31%" border=1> <tr> <td class=content bgColor=#999999><body bgcolor="#fef4d9" onLoad="flash()"></td></tr></table>

特效六:文字来回出现

第一步:把如下代码加入<head>区域中

<table width="75%" border=1> <tr> <td class=content bgColor=#999999><script LANGUAGE="Javascript">

第二步:<body>中的内容改为:

<table width="31%" border=1> <tr> <td class=content bgColor=#999999><body bgcolor="#fef4d9" onLoad="scrollIn()"></td></tr></table>

特效七:状态栏固定信息

<table width="56%" border=1> <tr> <td class=content bgColor=#999999><body bgcolor="#fef4d9" onmouseover="self.status='欢迎光临“赛迪网”--http://www.ccidnet.com';return true"></td></tr></table></td> </tr> </table>
↑返回目录
前一篇: JavaScript图片小特效5例
后一篇: 用Javascript自动输出网页文本