텍스트_전형적인 특수 효과를 표시할 수 있는 게시판용 js 코드

WBOY
풀어 주다: 2016-05-16 19:17:01
원래의
1931명이 탐색했습니다.

텍스트를 표시할 수 있고 다양한 곳에 활용할 수 있는 게시판도 절대 놓칠 수 없죠!
스크립트 설명:
1단계:

영역에 다음 코드를 추가합니다.

2단계:
영역에 다음 코드를 추가합니다.

 
 
 
 
 
 
 
 
 

 


<script> <BR><!-- Activate Cloaking Device <BR>var i = 0; <BR>// used to cycle thru messages <BR>var TextNumber = -1; <BR>// array of messages <BR>var TextInput = new Object(); <BR>// used to load manipulate message <BR>var HelpText=""; <BR>// used to load message <BR>var Text = ""; <BR>// length of timeout (smaller is faster) <BR>var Speed=50; <BR>// used to display message number <BR>var message=0; <BR>// used to position text in ver 2.0 <BR>var addPadding="rn"; <BR>// Each element of TextInput represents a single message. <BR>TextInput[0] = "今天注意了有新的任务布置"; <BR>TextInput[1] = "欢迎你的光临!本站为你提供大量javascript下载"; <BR>TextInput[2] = "重点介绍Javascript"; <BR>TextInput[3] = "与制作网页特效密切相关的技术"; <BR>TextInput[4] = "本站同时有影音空间等栏目"; <BR>TextInput[5] = "还有新闻及健康方面的资料"; <BR>TextInput[6] = "还有宽带网方面的大量技术文章"; <BR>TextInput[7] = "本站网址:http://www.njcatv.net"; <BR>TotalTextInput = 7; // (0, 1, 2, 3, 4, 5, 6, 7) <BR>// Positioning and speed vary between versions. <BR>var Version = navigator.appVersion; <BR>if (Version.substring(0, 1)==3) <BR>{ <BR>Speed=200; <BR>addPadding=""; <BR>} <BR>for (var addPause = 0; addPause <= TotalTextInput; addPause++) <BR>{TextInput[addPause]=addPadding+TextInput[addPause];} <BR>var TimerId <BR>var TimerSet=false; <BR>// Called by >>> button (display next message) . <BR>function nextMessage() <BR>{ <BR>if (!TimerSet) <BR>{ <BR>TimerSet=true; <BR>clearTimeout (TimerId); <BR>if (TextNumber>=TotalTextInput) <BR>{ <BR>alert("This is the end of the list!"); <BR>TimerSet=false; <BR>} <BR>else <BR>{ <BR>TextNumber+=1; <BR>message=TextNumber+1; <BR>document.forms[0].elements[2].value= message; <BR>Text = TextInput[TextNumber]; <BR>HelpText = Text; <BR>} <BR>teletype(); <BR>} <BR>} <BR>// Gets and displays character from rollMessage() . <BR>// Variable Speed controls length of timeout and thus the speed of typing. <BR>function teletype() <BR>{ <BR>if (TimerSet) <BR>{ <BR>Text=rollMessage(); <BR>TimerId = setTimeout("teletype()", Speed); <BR>document.forms[0].elements[0].value=Text; <BR>} <BR>} <BR>// Pulls one character at a time from string and returns (as Text) to function teletype() for displaying. <BR>function rollMessage () <BR>{ <BR>i++; <BR>var CheckSpace = HelpText.substring(i-1, i); <BR>CheckSpace = "" + CheckSpace; <BR>if (CheckSpace == " ") <BR>{i++;} <BR>if (i >= HelpText.length+1) <BR>{ <BR>TimerSet=false; <BR>Text = HelpText.substring(0, i); <BR>i=0; <BR>return (Text); <BR>} <BR>Text = HelpText.substring(0, i); <BR>return (Text); <BR>} <BR>// Initially called by onLoad in BODY tag to load title. <BR>function initTeleType() <BR>{ <BR>Text="rn Manual Tele-Type Display"; <BR>document.forms[0].elements[0].value=Text; <BR>} <BR>// Called by <<< button (get previous message). <BR>function lastMessage() <BR>{ <BR>if (!TimerSet && TextNumber!=-1) <BR>{ <BR>TimerSet=true; <BR>clearTimeout (TimerId); <BR>if (TextNumber<=0) <BR>{ <BR>alert("This is the beginning of the list!"); <BR>TimerSet=false; <BR>} <BR>else <BR>{ <BR>TextNumber-=1; <BR>message=TextNumber+1; <BR>document.forms[0].elements[2].value= message; <BR>Text = TextInput[TextNumber]; <BR>HelpText = Text; <BR>} <BR>teletype(); <BR>} <BR>} <BR>// Deactivate Cloaking --></script>

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!