信息发布软件,b2b软件,广告发布软件

标题: 浏览器JavaScript状态栏显示生动文字或是滚动文字 [打印本页]

作者: 群发软件    时间: 2017-6-8 16:48
标题: 浏览器JavaScript状态栏显示生动文字或是滚动文字
本帖最后由 群发软件 于 2017-6-8 16:49 编辑

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


  特效一:滚动显示

被过滤广告
  第一步:把如下代码加入< head>区域中

  < script language="Javascript">

  < !--

  function scrollit(seed) {

  var m1 = "HI:你好! ";

  var m2 = "欢迎访问多特";

  var m3 = "请多提意见,谢谢! ";

  var m4 = "欢迎您下次再来!";

  var m5 = "www.duote.com ";

  var msg=m1+m2+m3+m4+m5;

  var out = " ";

  var c = 1;

  if (seed > 100) {

  seed--;

  cmd="scrollit("+seed+")";

  timerTwo=window.setTimeout(cmd,100);

  }

  else if (seed < = 100 && seed > 0) {

  for (c=0 ; c < seed ; c++) {

  out+=" ";

  }

  out+=msg;

  seed--;

  window.status=out;

  cmd="scrollit("+seed+")";

  timerTwo=window.setTimeout(cmd,100);

  }

  else if (seed < = 0) {

  if (-seed < msg.length) {

  out+=msg.substring(-seed,msg.length);

  seed--;

  window.status=out;

  cmd="scrollit("+seed+")";

  timerTwo=window.setTimeout(cmd,100);

  }

  else {

  window.status=" ";

  timerTwo=window.setTimeout("scrollit(100)",75);

  }

  }

  }

  //-->

  < /script>

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

  < body background=bag.gif>

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

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

  < 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< position; i++)

  {out += msg.charAt(i)}

  for (i=1;i< jumpSpaces;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>

  特效三:title弹出效果

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

  < script language="javascript">

  < !-- Hide me

  var index_count = 0;

  var title_string = "欢迎光临多特网,(www.duote.com)这里有许多电脑应用方面的文章

  ,是您学习电脑的好去处!希望您能够常来!";

  var title_length = title_string.length;

  var cmon;

  var kill_length = 0;

  function loopTheScroll()

  {

  scrollTheTitle();

  if(kill_length > title_length)

  {

  clearTimeout(cmon);

  }

  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>


  特效四:文字组合弹出

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

  < script language="javascript">

  < !-- Hide this script from old browsers --

  var speed = 10

  var pause = 1500

  var timerID = null

  var bannerRunning = false

  var ar = new Array()

  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>


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

  < body bgcolor="#fef4d9">

  特效五:文字不停闪烁

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

  < script language="">

  < !--

  var yourwords = "欢迎光临多特网(www.duote.com)!!!";

  var speed = 700;

  var control = 1;

  function flash()

  {

  if (control == 1)

  {

  window.status=yourwords;

  control=0;

  }

  else

  {

  window.status="";

  control=1;

  }

  setTimeout("flash()",speed);

  }

  // -->

  < /script>

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

  < body bgcolor="#fef4d9">

  特效六:文字来回出现

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

  < script LANGUAGE="Javascript">

  < !-- Begin

  var Message="欢迎光临多特网(www.duote.com)!!!!!";

  var place=1;

  function scrollIn() {

  window.status=Message.substring(0, place);

  if (place >= Message.length) {

  place=1;

  window.setTimeout("scrollOut()",300);

  } else {

  place++;

  window.setTimeout("scrollIn()",50);

  }

  }

  function scrollOut() {

  window.status=Message.substring(place, Message.length);

  if (place >= Message.length) {

  place=1;

  window.setTimeout("scrollIn()", 100);

  } else {

  place++;

  window.setTimeout("scrollOut()", 50);

  }

  }

  // End -->

  < /script>

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

  < body bgcolor="#fef4d9">

  特效七:状态栏固定信息

  < body bgcolor="#fef4d9">

<html>
<head>
<title>js实现标题栏内文字动态交替显示效果</title>
<script language="JavaScript">
step=0
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='JS标题栏内文字动态交替显示效果'}
if (step==2) {document.title='☆★☆欢迎光临代码家园☆★☆'}
setTimeout("flash_title()",1121);
}
flash_title()
</script>
</head>
<body>
请往标题栏上看~

作者: ziyang701    时间: 2017-6-10 11:53
过来看看的
作者: ekmci    时间: 2017-6-13 06:19
,售前售后都有回访跟进,比较负责的!
作者: 紫逸风    时间: 2017-6-13 21:35
的很漂亮,用起来很好用,目前粉丝量也上来
作者: huangge    时间: 2017-6-16 13:27
小手一抖,钱钱到手!
作者: 发财猪    时间: 2017-6-19 10:41
还不错
作者: anleeycn    时间: 2017-6-21 21:30
!!!
作者: huangge    时间: 2017-6-22 00:25
心的帮助设置模板,非常满意!
作者: pwl2015    时间: 2017-6-22 17:40
不错,很感谢掌柜,下次还找你,很想你收我做徒弟啊!
作者: dfgdgdfgdf    时间: 2017-6-22 20:09
,值得信赖
作者: yangjiang1    时间: 2017-6-23 00:21
及时做出评价,系统默认好评!
作者: tian001    时间: 2017-6-25 14:51
了,和卖家描述的一样,操作简单,很实用很方便,店家的服务热情、周到、细心很满意的一次网购
作者: huanyili998    时间: 2017-6-26 05:53
很好,服务很好,耐心细致,下次还会来的
作者: lalajie    时间: 2017-6-30 17:40
很好,热情有耐心!
作者: yirenzhuang    时间: 2017-7-2 07:48
亮,也很专业,弄起来以后果然就是不一样,速度也很快,有效率,满意
作者: kevin3898    时间: 2017-7-6 08:58
又快专业就是不一样
作者: jiandao1    时间: 2017-7-8 03:51
好评厉害耐心的卖家




欢迎光临 信息发布软件,b2b软件,广告发布软件 (http://postbbs.com/) Powered by Discuz! X3.2