Avatar
jimmyscorp
09/05/2005 11:33 PM (UTC)
0
bigger font Yeah....
Avatar
jimmyscorp
09/05/2005 11:36 PM (UTC)
0
Pie is awsome. This is fun.
Avatar
jimmyscorp
09/06/2005 12:13 AM (UTC)
0
How do you make it slide across like that?
Avatar
jimmyscorp
09/06/2005 02:50 AM (UTC)
0
Aw,it doesn't work. Oh well.
Avatar
Ekule
09/12/2005 04:28 AM (UTC)
0
[html] // Countdown script v1.1
// documentation: http://www.dithered.com/javascript/countdown/index.html
// license: http://creativecommons.org/licenses/by/1.0/
// code by Chris Nott (chris[at]dithered[dot]com)


function Countdown(name, updateFrequency) {
this.name = name;
this.updateFrequency = updateFrequency;
this.images = null;
this.endDate = new Date();
this.format = (document.getElementById && document.getElementById(this.name)) ? document.getElementById(this.name).innerHTML : '';
}

Countdown.prototype.setImages = function(num0, num1, num2, num3, num4, num5, num6, num7, num8, num9) {
this.images = new Array(num0, num1, num2, num3, num4, num5, num6, num7, num8, num9);
preloadImages(num0, num1, num2, num3, num4, num5, num6, num7, num8, num9);
};

Countdown.prototype.setEndDate = function(year, month, day, hour, minute, second, milliseconds) {
this.endDate = new Date(year, month - 1, day, ( (hour) ? hour : 0), ( (minute) ? minute : 0), ( (second) ? second : 0), ( (milliseconds) ? milliseconds : 0));
};

Countdown.prototype.start = function() {
this.update();
setInterval(this.name + '.update()', (this.updateFrequency ? this.updateFrequency : 1000) );
};

Countdown.prototype.update = function() {

// calculate the time until countdown end date
var now = new Date();
var difference = this.endDate - now;

// decompose difference into days, hours, minutes and seconds parts
var days = parseInt(difference / 86400000) + '';
var hours = parseInt((difference % 86400000) / 3600000) + '';
var minutes = parseInt((difference % 3600000) / 60000) + '';
var seconds = parseInt((difference % 60000) / 1000) + '';
var milliseconds = parseInt(difference % 1000) + '';

// negative values should be set to 0
if (isNaN(days) || days.charAt(0) == '-') days = '0';
if (isNaN(hours) || hours.charAt(0) == '-') hours = '0';
if (isNaN(minutes) || minutes.charAt(0) == '-') minutes = '0';
if (isNaN(seconds) || seconds.charAt(0) == '-') seconds = '0';
if (isNaN(milliseconds) || milliseconds.charAt(0) == '-') milliseconds = '0';

// display changes differently for images and text countdowns
if (this.images != null) {

// single digit values should have a '0' prepended to them
if (days.length == 1) days = '000' + days;
else if (days.length == 2) days = '00' + days;
else if (days.length == 3) days = '0' + days;
if (hours.length == 1) hours = '0' + hours;
if (minutes.length == 1) minutes = '0' + minutes;
if (seconds.length == 1) seconds = '0' + seconds;
if (milliseconds.length == 1) milliseconds = '00' + milliseconds;
else if (milliseconds.length == 2) milliseconds = '0' + milliseconds;

// update images
if (document.images[this.name + '_d1000']) document.images[this.name + '_d1000'].src = this.images[parseInt(days.charAt(0))];
if (document.images[this.name + '_d100']) document.images[this.name + '_d100'].src = this.images[parseInt(days.charAt(1))];
if (document.images[this.name + '_d10']) document.images[this.name + '_d10'].src = this.images[parseInt(days.charAt(2))];
if (document.images[this.name + '_d1']) document.images[this.name + '_d1'].src = this.images[parseInt(days.charAt(3))];
if (document.images[this.name + '_h10']) document.images[this.name + '_h10'].src = this.images[parseInt(hours.charAt(0))];
if (document.images[this.name + '_h1']) document.images[this.name + '_h1'].src = this.images[parseInt(hours.charAt(1))];
if (document.images[this.name + '_m10']) document.images[this.name + '_m10'].src = this.images[parseInt(minutes.charAt(0))];
if (document.images[this.name + '_m1']) document.images[this.name + '_m1'].src = this.images[parseInt(minutes.charAt(1))];
if (document.images[this.name + '_s10']) document.images[this.name + '_s10'].src = this.images[parseInt(seconds.charAt(0))];
if (document.images[this.name + '_s1']) document.images[this.name + '_s1'].src = this.images[parseInt(seconds.charAt(1))];
if (document.images[this.name + '_ms100']) document.images[this.name + '_ms100'].src = this.images[parseInt(milliseconds.charAt(0))];
if (document.images[this.name + '_ms10']) document.images[this.name + '_ms10'].src = this.images[parseInt(milliseconds.charAt(1))];
if (document.images[this.name + '_ms1']) document.images[this.name + '_ms1'].src = this.images[parseInt(milliseconds.charAt(2))];
}
else if (this.format != '') {
if (document.getElementById && document.getElementById(this.name)) {
var html = this.format;
html = html.replace(/~d~/, days);
html = html.replace(/~h~/, hours);
html = html.replace(/~m~/, minutes);
html = html.replace(/~s~/, seconds);
html = html.replace(/~ms~/, milliseconds);

document.getElementById(this.name).innerHTML = html;
}
}
};


// Image preloader
function preloadImages() {
if (document.images) {
for (var i = 0; i < preloadImages.arguments.length; i++) {
(new Image()).src = preloadImages.arguments[i];
}
}
} [/html]
Avatar
LinkSkywalker
09/22/2005 11:03 PM (UTC)
0
is it showing?

Green Day>

does it work?
Avatar
Toxik
Avatar
About Me
09/24/2005 09:27 PM (UTC)
0
Okay. . .
Avatar
LinkSkywalker
09/24/2005 11:31 PM (UTC)
0
Green Day is da best!Green DayLink rulz!Kitana and Sub-ZeroThis is awesome!
Avatar
LinkSkywalker
09/24/2005 11:33 PM (UTC)
0
LinkSkywalker Wrote:
Green Day is da best!Green DayLink rulz!Kitana and Sub-ZeroThis is awesome!


Holy crapola bars! The color won't work and Green Day is da best was suppossed to be big!
Avatar
LinkSkywalker
09/24/2005 11:35 PM (UTC)
0
cross it out slide,slide,slide
Avatar
LinkSkywalker
09/24/2005 11:43 PM (UTC)
0
slide plz!
Avatar
-A-nubis
09/25/2005 05:14 PM (UTC)
0
Would u fucking noob morons stop the spamming in here and paste all ur HTML crap in 1 god damn freaking post!?
Avatar
GreatQueenSindel
09/25/2005 06:19 PM (UTC)
0
-A-nubis Wrote:
Would u fucking noob morons stop the spamming in here and paste all ur HTML crap in 1 god damn freaking post!?

You got skulled by tgrant. I know because he's the only fuckin mod thats always online. Office Clerk my ass.
Avatar
Toxik
Avatar
About Me
09/25/2005 07:43 PM (UTC)
0
GreatQueenSindel Wrote:
-A-nubis Wrote:
Would u fucking noob morons stop the spamming in here and paste all ur HTML crap in 1 god damn freaking post!?

You got skulled by tgrant. I know because he's the only fuckin mod thats always online. Office Clerk my ass.




Are you the new sektor101 on the forums?. I am asking because your vocabulary here on the forums is very different from the one in the Real World. Hhmmm... somebody is growing up. smile
Avatar
Subzero2
Avatar
About Me

PSN: Eazail70x7

09/26/2005 04:38 PM (UTC)
0
GreatQueenSindel Wrote:
-A-nubis Wrote:
Would u fucking noob morons stop the spamming in here and paste all ur HTML crap in 1 god damn freaking post!?

You got skulled by tgrant. I know because he's the only fuckin mod thats always online. Office Clerk my ass.


He deserved it imo. tongue Fuckin right.
GreatQueenSindel Wrote:
-A-nubis Wrote:
Would u fucking noob morons stop the spamming in here and paste all ur HTML crap in 1 god damn freaking post!?

You got skulled by tgrant. I know because he's the only fuckin mod thats always online. Office Clerk my ass.


Hhahaha.
Avatar
Ermacwon
10/02/2005 09:58 PM (UTC)
0
WTF!??!!!
Avatar
LiNKiNPaRkFreAk
10/03/2005 03:32 AM (UTC)
0
Avatar
LiNKiNPaRkFreAk
10/03/2005 03:42 AM (UTC)
0
This iskind offun.
Avatar
Ermacwon
10/03/2005 04:23 PM (UTC)
0
WOOOOOOOOOOOOgrin
Avatar
jimmyscorp
10/06/2005 04:02 AM (UTC)
0
Cool
Avatar
-A-nubis
10/16/2005 10:03 AM (UTC)
0
Subzero2 Wrote:
GreatQueenSindel Wrote:
-A-nubis Wrote:
Would u fucking noob morons stop the spamming in here and paste all ur HTML crap in 1 god damn freaking post!?

You got skulled by tgrant. I know because he's the only fuckin mod thats always online. Office Clerk my ass.


He deserved it imo. tongue Fuckin right.


Who the fuck are you? :S
Download on the App StoreGet it on Google Play
© 1998-2024 Shadow Knight Media, LLC. All rights reserved. Read our Privacy Policy.
Mortal Kombat, the dragon logo and all character names are trademarks and copyright of Warner Bros. Entertainment Inc.