begin process at 2012 05 28 10:30:40
  Trouver un code source :
 
dans
 
Accueil > 

Code

 > 

Date & Heure

 > N°2 HORLOGE EN CHIFFRES

N°2 HORLOGE EN CHIFFRES


 Information sur la source

Note :
7 / 10 - par 3 personnes
7,00 / 10

  • 1

  • 2

  • 3

  • 4

  • 5

  • 6

  • 7

  • 8

  • 9

  • 10
Catégorie :Date & Heure Niveau :Initié Date de création :26/05/2003 Date de mise à jour :26/05/2003 10:52:27 Vu :12 479

Auteur : Deny

Ecrire un message privé
Commentaire sur cette source (6)
Ajouter un commentaire et/ou une note

 Description

Des chiffres en haut de page, ou où vous voulez

Source

  • <!-- THREE STEPS TO INSTALL DIGITAL CLOCK:
  • 1. Copy the coding into the HEAD of your HTML document
  • 2. Add the onLoad event handler into the BODY tag
  • 3. Put the last coding into the BODY of your HTML document -->
  • <!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
  • <HEAD>
  • <SCRIPT LANGUAGE="JavaScript">
  • <!-- Original: Ramandeep Singh (ramandeepji@yahoo.com) -->
  • <!-- Web Site: http://hard-drive.hypermart.net -->
  • <!-- This script and many more are available free online at -->
  • <!-- The JavaScript Source!! http://javascript.internet.com -->
  • <!-- Begin
  • var dn;
  • c1 = new Image(); c1.src = "digital-clock/c1.gif";
  • c2 = new Image(); c2.src = "digital-clock/c2.gif";
  • c3 = new Image(); c3.src = "digital-clock/c3.gif";
  • c4 = new Image(); c4.src = "digital-clock/c4.gif";
  • c5 = new Image(); c5.src = "digital-clock/c5.gif";
  • c6 = new Image(); c6.src = "digital-clock/c6.gif";
  • c7 = new Image(); c7.src = "digital-clock/c7.gif";
  • c8 = new Image(); c8.src = "digital-clock/c8.gif";
  • c9 = new Image(); c9.src = "digital-clock/c9.gif";
  • c0 = new Image(); c0.src = "digital-clock/c0.gif";
  • cb = new Image(); cb.src = "digital-clock/cb.gif";
  • cam = new Image(); cam.src = "digital-clock/cam.gif";
  • cpm = new Image(); cpm.src = "digital-clock/cpm.gif";
  • function extract(h,m,s,type) {
  • if (!document.images) return;
  • if (h <= 9) {
  • document.images.a.src = cb.src;
  • document.images.b.src = eval("c"+h+".src");
  • }
  • else {
  • document.images.a.src = eval("c"+Math.floor(h/10)+".src");
  • document.images.b.src = eval("c"+(h%10)+".src");
  • }
  • if (m <= 9) {
  • document.images.d.src = c0.src;
  • document.images.e.src = eval("c"+m+".src");
  • }
  • else {
  • document.images.d.src = eval("c"+Math.floor(m/10)+".src");
  • document.images.e.src = eval("c"+(m%10)+".src");
  • }
  • if (s <= 9) {
  • document.g.src = c0.src;
  • document.images.h.src = eval("c"+s+".src");
  • }
  • else {
  • document.images.g.src = eval("c"+Math.floor(s/10)+".src");
  • document.images.h.src = eval("c"+(s%10)+".src");
  • }
  • if (dn == "AM") document.j.src = cam.src;
  • else document.images.j.src = cpm.src;
  • }
  • function show3() {
  • if (!document.images)
  • return;
  • var Digital = new Date();
  • var hours = Digital.getHours();
  • var minutes = Digital.getMinutes();
  • var seconds = Digital.getSeconds();
  • dn = "AM";
  • if ((hours >= 12) && (minutes >= 1) || (hours >= 13)) {
  • dn = "PM";
  • hours = hours-12;
  • }
  • if (hours == 0)
  • hours = 12;
  • extract(hours, minutes, seconds, dn);
  • setTimeout("show3()", 1000);
  • }
  • // End -->
  • </script>
  • </HEAD>
  • <!-- STEP TWO: Insert the onLoad event handler into your BODY tag -->
  • <BODY onLoad="show3()" bgcolor="#000000">
  • <!-- STEP THREE: Copy this code into the BODY of your HTML document -->
  • <img height=21 src="digital-clock/cb.gif" width=16 name=a>
  • <img height=21 src="digital-clock/cb.gif" width=16 name=b>
  • <img height=21 src="digital-clock/colon.gif" width=9 name=c>
  • <img height=21 src="digital-clock/cb.gif" width=16 name=d>
  • <img height=21 src="digital-clock/cb.gif" width=16 name=e>
  • <img height=21 src="digital-clock/colon.gif" width=9 name=f>
  • <img height=21 src="digital-clock/cb.gif" width=16 name=g>
  • <img height=21 src="digital-clock/cb.gif" width=16 name=h>
  • <img height=21 src="digital-clock/cam.gif" width=16 name=j>
  • <p><center>
  • <font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
  • by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
  • </center><p>
  • <!-- Script Size: 3.36 KB -->
<!-- THREE STEPS TO INSTALL DIGITAL CLOCK:

  1.  Copy the coding into the HEAD of your HTML document
  2.  Add the onLoad event handler into the BODY tag
  3.  Put the last coding into the BODY of your HTML document  -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Original:  Ramandeep Singh (ramandeepji@yahoo.com) -->
<!-- Web Site:  http://hard-drive.hypermart.net -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var dn;
c1 = new Image(); c1.src = "digital-clock/c1.gif";
c2 = new Image(); c2.src = "digital-clock/c2.gif";
c3 = new Image(); c3.src = "digital-clock/c3.gif";
c4 = new Image(); c4.src = "digital-clock/c4.gif";
c5 = new Image(); c5.src = "digital-clock/c5.gif";
c6 = new Image(); c6.src = "digital-clock/c6.gif";
c7 = new Image(); c7.src = "digital-clock/c7.gif";
c8 = new Image(); c8.src = "digital-clock/c8.gif";
c9 = new Image(); c9.src = "digital-clock/c9.gif";
c0 = new Image(); c0.src = "digital-clock/c0.gif";
cb = new Image(); cb.src = "digital-clock/cb.gif";
cam = new Image(); cam.src = "digital-clock/cam.gif";
cpm = new Image(); cpm.src = "digital-clock/cpm.gif";
function extract(h,m,s,type) {
if (!document.images) return;
if (h <= 9) {
document.images.a.src = cb.src;
document.images.b.src = eval("c"+h+".src");
}
else {
document.images.a.src = eval("c"+Math.floor(h/10)+".src");
document.images.b.src = eval("c"+(h%10)+".src");
}
if (m <= 9) {
document.images.d.src = c0.src;
document.images.e.src = eval("c"+m+".src");
}
else {
document.images.d.src = eval("c"+Math.floor(m/10)+".src");
document.images.e.src = eval("c"+(m%10)+".src");
}
if (s <= 9) {
document.g.src = c0.src;
document.images.h.src = eval("c"+s+".src");
}
else {
document.images.g.src = eval("c"+Math.floor(s/10)+".src");
document.images.h.src = eval("c"+(s%10)+".src");
}
if (dn == "AM") document.j.src = cam.src;
else document.images.j.src = cpm.src;
}
function show3() {
if (!document.images)
return;
var Digital = new Date();
var hours = Digital.getHours();
var minutes = Digital.getMinutes();
var seconds = Digital.getSeconds();
dn = "AM";
if ((hours >= 12) && (minutes >= 1) || (hours >= 13)) {
dn = "PM";
hours = hours-12;
}
if (hours == 0)
hours = 12;
extract(hours, minutes, seconds, dn);
setTimeout("show3()", 1000);
}
//  End -->
</script>

</HEAD>

<!-- STEP TWO: Insert the onLoad event handler into your BODY tag  -->

<BODY onLoad="show3()" bgcolor="#000000">

<!-- STEP THREE: Copy this code into the BODY of your HTML document  -->

<img height=21 src="digital-clock/cb.gif" width=16 name=a>
<img height=21 src="digital-clock/cb.gif" width=16 name=b>
<img height=21 src="digital-clock/colon.gif" width=9 name=c>
<img height=21 src="digital-clock/cb.gif" width=16 name=d>
<img height=21 src="digital-clock/cb.gif" width=16 name=e>
<img height=21 src="digital-clock/colon.gif" width=9 name=f>
<img height=21 src="digital-clock/cb.gif" width=16 name=g>
<img height=21 src="digital-clock/cb.gif" width=16 name=h>
<img height=21 src="digital-clock/cam.gif" width=16 name=j>

<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  3.36 KB -->



 Sources du même auteur

DHTML - MANIP CSS
OUVERTURE POPUP À URL ALÉATOIRE
Source avec Zip 96 SITES RÉPERTORIÉS : HTML, CSS, DHTML, JAVA, JAVASCRIPT, P...
BROWSER SNIFFER (RENIFLEUR)
Source avec Zip DHTML SCROLLTOP

 Sources de la même categorie

NOMBRE DE JOURS, MOIS ET ANNÉES DEPUIS LA NAISSANCE par marcenana
Source avec Zip CALENDRIER ANNUEL UNIVERSEL AVEC SAINTS DU CALENDRIER ET FÊT... par 007Julien
OBTENIR LE NOMBRE DE JOURS D'UN MOIS SUIVANT SON ANNÉE par hugolegrand
SAINT DU JOUR par tefa24600
Source avec Zip Source avec une capture NIPCLOCK 1.2 par neep

Commentaires et avis

Commentaire de revinc le 26/05/2003 12:39:10

pff vous pourriez mettre des sources à vous au moins... sur cs, y'a plus que du pompage de codes maintenant...

Commentaire de bob3000 le 27/05/2003 04:36:39

cest pas super comme script...

Commentaire de revinc le 27/05/2003 10:08:32

ouais en plus c'est moche!

Commentaire de Moranea le 26/09/2003 09:28:00

Nul c'est du vol de script et en plus même pas les gifs fournis

Commentaire de maltax51 le 08/12/2003 21:07:41

lol comprend rien ... qui peu me dire que je doit utiliser comme prog pour crée un site svp la jutilise front de page..

Commentaire de Kiscool94 le 06/06/2007 20:05:03

front page 2000 j'ai et je compte pas changé ,pour moi c'est perfect
Kiscool.fr mon site ! va voir :)

 Ajouter un commentaire




Nos sponsors


Sondage...

CalendriCode

Mai 2012
LMMJVSD
 123456
78910111213
14151617181920
21222324252627
28293031   

Consulter la suite du CalendriCode

Photothèque

A découvrir



 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 4,384 sec (3)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales