home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>Visual Effects</title>
- <script language="JavaScript">
- <!-- begin script
- var emptyFrame = '<html></html>';
- var hexchars = '0123456789ABCDEF';
- function fromHex (str) {
- var high = str.charAt(0); // Note: Netscape 2.0 bug workaround
- var low = str.charAt(1);
- return (16 * hexchars.indexOf(high)) +
- hexchars.indexOf(low);
- }
- function toHex (num) {
- return hexchars.charAt(num >> 4) + hexchars.charAt(num & 0xF);
- }
- function Color (str) {
- this.red = fromHex(str.substring(0,2));
- this.green = fromHex(str.substring(2,4));
- this.blue = fromHex(str.substring(4,6));
- this.toString = ColorString;
- return this;
- }
- function ColorString () {
- return toHex(this.red) + toHex(this.green) + toHex(this.blue);
- }
- function BodyColor (bgColor,fgColor,linkColor,vlinkColor,alinkColor) {
- this.bgColor = bgColor;
- this.fgColor = fgColor;
- this.linkColor = linkColor;
- this.vlinkColor = vlinkColor;
- this.alinkColor = alinkColor;
- this.toString = BodyColorString;
- return this;
- }
- function BodyColorString () {
- return '<body' +
- ((this.bgColor == null) ? '' : ' bgcolor="#' + this.bgColor + '"') +
- ((this.fgColor == null) ? '' : ' text="#' + this.fgColor + '"') +
- ((this.linkColor == null) ? '' : ' link="#' + this.linkColor + '"') +
- ((this.vlinkColor == null) ? '' : ' vlink="#' + this.vlinkColor + '"') +
- ((this.alinkColor == null) ? '' : ' alink="#' + this.alinkColor + '"') +
- '>';
- }
- function IntColor (start, end, step, steps) {
- this.red = Math.round(start.red+(((end.red-start.red)/(steps-1))*step));
- this.green = Math.round(start.green+(((end.green-start.green)/(steps-1))*step));
- this.blue = Math.round(start.blue+(((end.blue-start.blue)/(steps-1))*step));
- this.toString = ColorString;
- return this;
- }
- function Text (text, size, format, color) {
- this.text = text;
- this.length = text.length;
- this.size = size;
- this.format = format;
- this.color = color;
- this.toString = TextString;
- this.substring = TextString;
- return this;
- }
- function TextString (start, end) {
- with (this) {
- if (TextString.arguments.length < 2 || start >= length) start = 0;
- if (TextString.arguments.length < 2 || end > length) end = length;
- var str = text.substring(start,end);
- if (format != null) {
- if (format.indexOf("b") >= 0) str = str.bold();
- if (format.indexOf("i") >= 0) str = str.italics();
- if (format.indexOf("f") >= 0) str = str.fixed();
- }
- if (size != null) str = str.fontsize(size);
- if (color != null) {
- var colorstr = color.toString(); // Note: Netscape 2.0 bug workaround
- str = str.fontcolor(colorstr);
- }
- }
- return str;
- }
- function Block (args) {
- var argv = Block.arguments;
- var argc = argv.length;
- var len = 0;
- for (var i = 0; i < argc; i++) {
- len += argv[i].length;
- this[i] = argv[i];
- }
- this.length = len;
- this.entries = argc;
- this.toString = BlockString;
- this.substring = BlockString;
- return this;
- }
- function BlockString (start, end) {
- with (this) {
- if (BlockString.arguments.length < 2 || start >= length) start = 0;
- if (BlockString.arguments.length < 2 || end > length) end = length;
- }
- var str = "";
- var segstart = 0;
- var segend = 0;
- for (var i = 0; i < this.entries; i++) {
- segend = segstart + this[i].length;
- if (segend > start)
- str += this[i].substring(Math.max(start,segstart)-segstart, Math.min(end,segend)-segstart);
- segstart += this[i].length;
- if (segstart >= end)
- break;
- }
- return str;
- }
-
- function Marquee (body, text, maxlength, step) {
- this.body = body;
- this.text = text;
- this.length = text.length;
- this.maxlength = maxlength;
- this.step = step;
- this.offset = 0;
- this.toString = MarqueeString;
- return this;
- }
- function MarqueeString () {
- with (this) {
- var endstr = offset + maxlength;
- var remstr = 0;
- if (endstr > text.length) {
- remstr = endstr - text.length;
- endstr = text.length;
- }
- var str = nbsp(text.substring(offset,endstr) +
- ((remstr == 0) ? "" : text.substring(0,remstr)));
- offset += step;
- if (offset >= text.length)
- offset = 0;
- else if (offset < 0)
- offset = text.length - 1;
- }
- return '<html>' + this.body + '<table border=0 width=100% height=100%><tr>' +
- '<td align="center" valign="bottom">' + str + '</td></tr></table></body></html>';
- }
- function nbsp (strin) {
- var strout = "";
- var intag = false;
- var len = strin.length;
- for(var i=0, j=0; i < len; i++) {
- var ch = strin.charAt(i);
- if (ch == "<")
- intag = true;
- else if (ch == ">")
- intag = false;
- else if (ch == " " && !intag) {
- strout += strin.substring(j,i) + " ";
- j = i + 1;
- }
- }
- return strout + strin.substring(j,len);
- }
- function Fader (bodyA, bodyB, steps, text) {
- this.bodyA = bodyA;
- this.bodyB = bodyB;
- this.step = 0;
- this.steps = steps;
- this.text = text;
- this.toString = FaderString;
- return this;
- }
- function FaderString () {
- var intBody = new BodyColor();
- with (this) {
- if (bodyA.bgColor != null && bodyB.bgColor != null)
- intBody.bgColor = new IntColor (bodyA.bgColor, bodyB.bgColor, step, steps);
- if (bodyA.fgColor != null && bodyB.fgColor != null)
- intBody.fgColor = new IntColor (bodyA.fgColor, bodyB.fgColor, step, steps);
- if (bodyA.linkColor != null && bodyB.linkColor != null)
- intBody.linkColor = new IntColor (bodyA.linkColor, bodyB.linkColor, step, steps);
- if (bodyA.vlinkColor != null && bodyB.vlinkColor != null)
- intBody.vlinkColor = new IntColor (bodyA.vlinkColor, bodyB.vlinkColor, step, steps);
- if (bodyA.alinkColor != null && bodyB.alinkColor != null)
- intBody.alinkColor = new IntColor (bodyA.alinkColor, bodyB.alinkColor, step, steps);
- step++;
- if (step >= steps)
- step = 0;
- }
- return '<html>' + intBody + this.text + '</body></html>';
- }
- function Static (body, text) {
- this.body = body;
- this.text = text;
- this.toString = StaticString;
- return this;
- }
- function StaticString () {
- return '<html>' + this.body + '</body></html>';
- }
- function Alternator (bodyA, bodyB, text) {
- this.bodyA = bodyA;
- this.bodyB = bodyB;
- this.currentBody = "A";
- this.text = text;
- this.toString = AlternatorString;
- return this;
- }
- function AlternatorString () {
- var str = "<html>";
- with (this) {
- if (currentBody == "A") {
- str += bodyA;
- currentBody = "B";
- }
- else {
- str += bodyB;
- currentBody = "A";
- }
- str += text + '</body></html>';
- }
- return str;
- }
- function Event (start, loops, delay, action) {
- this.start = start * 1000;
- this.next = this.start;
- this.loops = loops;
- this.loopsRemaining = loops;
- this.delay = delay * 1000;
- this.action = action;
- return this;
- }
- function EventQueue (name, delay, loopAfter, loops, stopAfter) {
- this.active = true;
- this.name = name;
- this.delay = delay * 1000;
- this.loopAfter = loopAfter * 1000;
- this.loops = loops;
- this.loopsRemaining = loops;
- this.stopAfter = stopAfter * 1000;
- this.event = new Object;
- this.start = new Date ();
- this.loopStart = new Date();
- this.eventID = 0;
- this.addEvent = AddEvent;
- this.processEvents = ProcessEvents;
- this.startQueue = StartQueue;
- this.stopQueue = StopQueue;
- return this;
- }
- function AddEvent (event) {
- this.event[this.eventID++] = event;
- }
- function StartQueue () {
- with (this) {
- active = true;
- start = new Date();
- loopStart = new Date();
- loopsRemaining = loops;
- setTimeout (name + ".processEvents()", this.delay);
- }
- }
- function StopQueue () {
- this.active = false;
- }
- function ProcessEvents () {
- with (this) {
- if (!active) return;
- var now = new Date();
- if (now.getTime() - start.getTime() >= stopAfter) {
- active = false;
- return;
- }
- var elapsed = now.getTime() - loopStart.getTime();
- if (elapsed >= loopAfter) {
- if (--loopsRemaining <= 0) {
- active = false;
- return;
- }
- loopStart = new Date();
- elapsed = now.getTime() - loopStart.getTime();
- for (var i in event)
- if (event[i] != null) {
- event[i].next = event[i].start;
- event[i].loopsRemaining = event[i].loops;
- }
- }
- for (var i in event)
- if (event[i] != null)
- if (event[i].next <= elapsed)
- if (event[i].loopsRemaining-- > 0) {
- event[i].next = elapsed + event[i].delay;
- eval (event[i].action);
- }
- setTimeout (this.name + ".processEvents()", this.delay);
- }
- }
- var black = new Color ("000000");
- var white = new Color ("FFFFFF");
- var blue = new Color ("0000FF");
- var magenta = new Color ("FF00FF");
- var yellow = new Color ("FFFF00");
- var red = new Color ("FF0000");
-
- var blackOnWhite = new BodyColor (white, black);
- var whiteOnBlack = new BodyColor (black, white);
- var blueOnWhite = new BodyColor (white, blue);
- var yellowOnBlue = new BodyColor (blue, yellow);
- var magentaOnYellow = new BodyColor (yellow, magenta);
- var blackOnBlack = new BodyColor (black,black);
-
-
- var mbScene = new Block (
- new Text ("When shall we three meet again, ", "5", "b", red),
- new Text ("In thunder, lightning, or in rain? ", "6", "bf", blue),
- new Text ("When the hurlyburly\'s done, ", "5", "ib", yellow),
- new Text ("When the battle\'s lost and won. ", "6", "bfi", magenta),
- new Text ("That will be ere the set of sun. ", "6", "fb", red),
- "................"
- );
-
- var mbMarquee = new Marquee (whiteOnBlack, mbScene, 50, 2);
- var evq = new EventQueue ("evq", 0.1, 120, 5, 600);
- evq.addEvent (new Event (0, 35, 0.125,
- 'self.f1.location = "javascript:parent.mbMarquee"'));
-
- var fadingText = new Fader (yellowOnBlue, magentaOnYellow, 10,
- '<h1 align="center">Visual Effects</h1>');
- //var evq = new EventQueue ("evq", 0.1, 20, 10, 60);
- evq.addEvent (new Event (0, 10, 0.1,
- 'self.head.location="javascript:parent.fadingText"'));
-
- function initialize () {
- evq.startQueue();
- }
- // end script -->
- </script>
- <frameset rows="52,52,*" onLoad="initialize()">
- <frame name="head" src="javascript:parent.emptyFrame"
- marginwidth=1 marginheight=1 scrolling="no" noresize>
- <frame name="f1" src="javascript:parent.emptyFrame"
- marginwidth=1 marginheight=1 scrolling="no" noresize>
- <frame name="body" src="javascript:parent.emptyFrame">
- </frameset>
- <noframes>
- <h2 align="center">Netscape 2.0 or other JavaScript-enabled browser required</h2>
- </noframes>
- </html>
-