Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <center>
- <b><center><font size="7">
- <script>
- // ********** MAKE YOUR CHANGES HERE
- var text="Zmiana sieci na Viva-Serv.PL" // YOUR TEXT
- var speed=500 // SPEED OF FADE
- // ********** LEAVE THE NEXT BIT ALONE!
- if (document.all||document.getElementById){
- document.write('<span id="highlight">' + text + '</span>')
- var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight
- }
- else
- document.write(text)
- var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0")
- var r=1
- var g=1
- var b=1
- var seq=1
- function changetext(){
- rainbow="#"+hex[r]+hex[g]+hex[b]
- storetext.style.color=rainbow
- }
- function change(){
- if (seq==6){
- b--
- if (b==0)
- seq=1
- }
- if (seq==5){
- r++
- if (r==12)
- seq=6
- }
- if (seq==4){
- g--
- if (g==0)
- seq=5
- }
- if (seq==3){
- b++
- if (b==12)
- seq=4
- }
- if (seq==2){
- r--
- if (r==0)
- seq=3
- }
- if (seq==1){
- g++
- if (g==12)
- seq=2
- }
- changetext()
- }
- function starteffect(){
- if (document.all||document.getElementById)
- flash=setInterval("change()",speed)
- }
- starteffect()
- </script>
- </b></font>
- <script>
- TypingText = function(element, interval, cursor, finishedCallback) {
- if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
- this.running = true; // Never run.
- return;
- }
- this.element = element;
- this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
- this.interval = 70;
- this.origText = this.element.innerHTML;
- this.unparsedOrigText = this.origText;
- this.cursor = (cursor ? cursor : "");
- this.currentText = "";
- this.currentChar = 0;
- this.element.typingText = this;
- if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
- TypingText.all.push(this);
- this.running = false;
- this.inTag = false;
- this.tagBuffer = "";
- this.inHTMLEntity = false;
- this.HTMLEntityBuffer = "";
- }
- TypingText.all = new Array();
- TypingText.currentIndex = 0;
- TypingText.runAll = function() {
- for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
- }
- TypingText.prototype.run = function() {
- if(this.running) return;
- if(typeof this.origText == "undefined") {
- setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
- return;
- }
- if(this.currentText == "") this.element.innerHTML = "";
- // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
- if(this.currentChar < this.origText.length) {
- if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
- this.tagBuffer = "<";
- this.inTag = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
- this.tagBuffer += ">";
- this.inTag = false;
- this.currentText += this.tagBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inTag) {
- this.tagBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
- this.HTMLEntityBuffer = "&";
- this.inHTMLEntity = true;
- this.currentChar++;
- this.run();
- return;
- } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
- this.HTMLEntityBuffer += ";";
- this.inHTMLEntity = false;
- this.currentText += this.HTMLEntityBuffer;
- this.currentChar++;
- this.run();
- return;
- } else if(this.inHTMLEntity) {
- this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
- this.currentChar++;
- this.run();
- return;
- } else {
- this.currentText += this.origText.charAt(this.currentChar);
- }
- this.element.innerHTML = this.currentText;
- this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
- this.currentChar++;
- setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
- } else {
- this.currentText = "/";
- this.currentChar = 0;
- this.running = true;
- this.finishedCallback();
- }
- }
- </script>
- <p id="info">
- <font size="6" face="Comic Sans MS, cursive" style="color:white;">
- <br>
- <br>
- <script type="text/javascript">
- new TypingText(document.getElementById("info"), 70, function(i){
- var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
- ar.length]; });
- //Type out examples:
- TypingText.runAll();
- </script>
Advertisement
Add Comment
Please, Sign In to add comment