当前位置: 首页 > 实例教程 > 脚本特效 > 文字动画 > 震动的信息

文字动画
页底固定文字
震动的信息
改变文档文字大小
逐一加亮文字
打字效果

文字动画 中的 震动的信息


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-07-27   浏览: 782 ::
收藏到网摘: n/a

震动的信息 - 软晨网(RuanChen.com)

演示

Looking for JavaScripts? Visit JavaScript Kit!

在head区域加入以下代码

<style> .jc{ position:relative; } </style> <script language="JavaScript1.2"> var ns6=document.getElementById&&!document.all var ie=document.all var customcollect=new Array() var i=0 function jiggleit(num){ if ((!document.all&&!document.getElementById)) return; customcollect[num].style.left=(parseInt(customcollect[num].style.left)==-1)? customcollect[num].style.left=1 : customcollect[num].style.left=-1 } function init(){ if (ie){ while (eval("document.all.jiggle"+i)!=null){ customcollect[i]= eval("document.all.jiggle"+i) i++ } } else if (ns6){ while (document.getElementById("jiggle"+i)!=null){ customcollect[i]= document.getElementById("jiggle"+i) i++ } } if (customcollect.length==1) setInterval("jiggleit(0)",80) else if (customcollect.length>1) for (y=0;y<customcollect.length;y++){ var tempvariable='setInterval("jiggleit('+y+')",'+'100)' eval(tempvariable) } } window.onload=init </script>

在body区域加入显示用的代码

<span id="jiggle0" class="jc"><b>Looking for JavaScripts? Visit <a href="http://javascriptkit.com">JavaScript Kit!</a></b></span>

评论 (0) All

登陆 | 还没注册?