Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
63 lines (54 sloc)
2.12 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <HTML> | |
| <HEAD> | |
| <TITLE>Shopping Line - Televirtual</TITLE> | |
| <meta name="author" content="Leuba CP"> | |
| <SCRIPT LANGUAGE = "JavaScript"> | |
| function makeArray() { | |
| this.length = makeArray.arguments.length; | |
| for (var i = 0; i < this.length; i++) | |
| this[i + 1] = makeArray.arguments[i]; | |
| } | |
| function makeSlideShow (obj, wait, pre, url) { | |
| this.curText = ''; | |
| this.posit = 1; | |
| this.word = obj; | |
| this.length = obj.length; | |
| this.pre = pre; | |
| this.wait = wait; | |
| this.url = url; | |
| this.display = displaySlideShow; | |
| } | |
| function displaySlideShow() { | |
| if (this.posit <= this.length) { | |
| this.curText = this.word[this.posit] | |
| outStringWord = blankFrameTop + this.pre + this.curText + blankFrameBottom; | |
| parent.draw.location = 'javascript:parent.outStringWord'; | |
| this.posit++; | |
| } | |
| else { | |
| doneLoop = true; | |
| top.location = this.url; | |
| } | |
| } | |
| function displayLoop() { | |
| if (!doneLoop) reDraw = setTimeout('displayLoop()', wordIntro.wait); | |
| wordIntro.display(); | |
| } | |
| var words = new makeArray ('Vendas On Line !', '<BR><BR><BR>Shopping Virtual !', 'Rapidez !<br>Funcionalidade !<br>Baixo Custo ! ', 'Atacado ou Varejo !', 'SHOPPING LINE - TELEVIRTUAL !<BR><BR>©Leuba CP'); | |
| var wordIntro = new makeSlideShow (words, 2000, '<CENTER><BR><BR><BR><BR><BR><FONT face="Comic Sans MS,Verdana" SIZE = 5>', 'principal.htm'); | |
| var blankFrameTop = '<HTML><BODY BGCOLOR = "#000000" TEXT = "#FFFF00">'; | |
| var blankFrameBottom = '</BODY></HTML>'; | |
| var blankFrame = blankFrameTop + blankFrameBottom; | |
| var doneLoop = false; | |
| </SCRIPT> | |
| <FRAMESET onLoad = "displayLoop()" ROWS = "100%, *" FRAMEBORDER = NO BORDER = 0> | |
| <FRAME | |
| SCROLLING=AUTO | |
| SRC = "javascript:parent.blankFrame" | |
| NAME = "draw" | |
| MARGINWIDTH = 2 | |
| MARGINHEIGHT = 2> | |
| </FRAMESET> </HEAD> | |
| </HTML> | |
| <!-- ©2000 Leuba CP - Brazil --> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |