begin process at 2012 05 28 13:39:48
  Trouver un code source :
 
dans
 
Accueil > 

Code

 > 

Cookies

 > ECRAN QUI PASSE EN DIFFERENTES COULEURS A VOTRE ARRIVÉE SUR UN SITE!!!

ECRAN QUI PASSE EN DIFFERENTES COULEURS A VOTRE ARRIVÉE SUR UN SITE!!!


 Information sur la source

Note :
2 / 10 - par 1 personne
2,00 / 10

  • 1

  • 2

  • 3

  • 4

  • 5

  • 6

  • 7

  • 8

  • 9

  • 10
Catégorie :Cookies Niveau :Débutant Date de création :10/04/2003 Date de mise à jour :10/04/2003 20:10:42 Vu :7 595

Auteur : e7kv4uv

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

 Description

c simple et genial !!!

une sorte d'eclairsde toutes les couleurs !!!


Un peu long ms ca vaut le coup

Source

  • <SCRIPT language=JavaScript type=text/javascript>
  • document.bgcolor="#000000"
  • var hexchars="0123456789ABCDEF";
  • function fromHex (str) {
  • var high=str.charAt(0);
  • var low=str.charAt(1);
  • return(16*hexchars.indexOf(high))+hexchars.indexOf(low);
  • }
  • function Color(str){
  • this.r=fromHex(str.substring(0,2));
  • this.g=fromHex(str.substring(2,4));
  • this.b=fromHex(str.substring(4,6));
  • return this;
  • }
  • col_value="#0000FF";
  • color_start1=col_value.substring(1,8);
  • col_value="#00FFFF";
  • color_start2=col_value.substring(1,8);
  • col_value="#0000FF";
  • color_start3=col_value.substring(1,8);
  • col_value="#00FFFF";
  • color_start4=col_value.substring(1,8);
  • col_value="#ff0000";
  • color_start5=col_value.substring(1,8);
  • col_value="#FFFF00";
  • color_start6=col_value.substring(1,8);
  • col_value="#FF9900";
  • color_start7=col_value.substring(1,8);
  • col_value="#FF99CC";
  • color_start8=col_value.substring(1,8);
  • col_value="#660000";
  • color_start9=col_value.substring(1,8);
  • col_value="#333366";
  • color_start10=col_value.substring(1,8);
  • col_value="#FF0000";
  • color_start11=col_value.substring(1,8);
  • col_value="#FFFF00";
  • color_start12=col_value.substring(1,8);
  • col_value="#FF9900";
  • color_end1=col_value.substring(1,8);
  • col_value="#0000FF";
  • color_end2=col_value.substring(1,8);
  • col_value="#FF0000";
  • color_end3=col_value.substring(1,8);
  • col_value="#2d2d84";
  • color_end3=col_value.substring(1,8);
  • function makearray(n) {
  • this.length = n;
  • for(var i = 1; i <= n; i++)
  • this[i] = 0;
  • return this;
  • }
  • hexa = new makearray(16);
  • for(var i = 0; i <10; i++)
  • hexa[i] = i;
  • hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
  • hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
  • function hex(i) {
  • if (i <0)
  • return "00";
  • else if (i > 255)
  • return "ff";
  • else
  • return "" + hexa[Math.floor(i/16)] + hexa[i%16];
  • }
  • function setbgColor(r, g, b) {
  • var hr = hex(r); var hg = hex(g); var hb = hex(b);
  • document.bgColor = "#"+hr+hg+hb;
  • }
  • function fade(sr, sg, sb, er, eg, eb, step) {
  • for(var i = 0; i <= step; i++) {
  • setbgColor(
  • Math.floor(sr * ((step-i)/step) + er * (i/step)),
  • Math.floor(sg * ((step-i)/step) + eg * (i/step)),
  • Math.floor(sb * ((step-i)/step) + eb * (i/step)));
  • }
  • }
  • function fadein1() {
  • fade(Color(color_start1).r,Color(color_start1).g,Color(color_start1).b,Color(color_end1).r,Color(color_end1).g,Color(color_end1).b,20);
  • }
  • function fadein2() {
  • fade(Color(color_start2).r,Color(color_start2).g,Color(color_start2).b,Color(color_end2).r,Color(color_end2).g,Color(color_end2).b,20);
  • }
  • function fadein3() {
  • fade(Color(color_start3).r,Color(color_start3).g,Color(color_start3).b,Color(color_end3).r,Color(color_end3).g,Color(color_end3).b,20);
  • }
  • fadein1();
  • fadein2();
  • fadein3();
  • </SCRIPT>
<SCRIPT language=JavaScript type=text/javascript>
document.bgcolor="#000000" 
var hexchars="0123456789ABCDEF";
function fromHex (str) {
var high=str.charAt(0);
var low=str.charAt(1);
return(16*hexchars.indexOf(high))+hexchars.indexOf(low);
}
function Color(str){
	this.r=fromHex(str.substring(0,2));
	this.g=fromHex(str.substring(2,4));
	this.b=fromHex(str.substring(4,6));
	return this;
	}
col_value="#0000FF";
color_start1=col_value.substring(1,8);
col_value="#00FFFF";
color_start2=col_value.substring(1,8);
col_value="#0000FF";
color_start3=col_value.substring(1,8);
col_value="#00FFFF"; 
color_start4=col_value.substring(1,8);
col_value="#ff0000";
color_start5=col_value.substring(1,8);
col_value="#FFFF00";  
color_start6=col_value.substring(1,8);
col_value="#FF9900";
color_start7=col_value.substring(1,8);
col_value="#FF99CC";
color_start8=col_value.substring(1,8);
col_value="#660000";
color_start9=col_value.substring(1,8);
col_value="#333366";
color_start10=col_value.substring(1,8);
col_value="#FF0000";
color_start11=col_value.substring(1,8);
col_value="#FFFF00";
color_start12=col_value.substring(1,8);
col_value="#FF9900";    
color_end1=col_value.substring(1,8);
col_value="#0000FF"; 
color_end2=col_value.substring(1,8);
col_value="#FF0000"; 
color_end3=col_value.substring(1,8);
col_value="#2d2d84"; 
color_end3=col_value.substring(1,8);
function makearray(n) { 
    this.length = n; 
    for(var i = 1; i <= n; i++) 
        this[i] = 0; 
    return this;  
}
hexa = new makearray(16);
for(var i = 0; i <10; i++)
    hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";

function hex(i) {
    if (i <0)
        return "00";
    else if (i > 255)
        return "ff";
    else
        return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}

function setbgColor(r, g, b) {
    var hr = hex(r); var hg = hex(g); var hb = hex(b);
    document.bgColor = "#"+hr+hg+hb;
}

function fade(sr, sg, sb, er, eg, eb, step) {
    for(var i = 0; i <= step; i++) {
        setbgColor(
        Math.floor(sr * ((step-i)/step) + er * (i/step)),
        Math.floor(sg * ((step-i)/step) + eg * (i/step)),
        Math.floor(sb * ((step-i)/step) + eb * (i/step)));
    }
}

function fadein1() { 
fade(Color(color_start1).r,Color(color_start1).g,Color(color_start1).b,Color(color_end1).r,Color(color_end1).g,Color(color_end1).b,20); 
}
function fadein2() {
	fade(Color(color_start2).r,Color(color_start2).g,Color(color_start2).b,Color(color_end2).r,Color(color_end2).g,Color(color_end2).b,20); 
}
function fadein3() {
	fade(Color(color_start3).r,Color(color_start3).g,Color(color_start3).b,Color(color_end3).r,Color(color_end3).g,Color(color_end3).b,20); 
}
fadein1();
fadein2();
fadein3();
</SCRIPT>

 Conclusion

tout simple venez faire un tour sur www.thelombric.fr.st


shibby

Dude Inc. &lt;/e7kv4uv&gt;

&lt;..:: WwW.TheLombric.FR.ST ::..&gt;


 Sources du même auteur

MENU DEROULANT DE COULEURS D'ARRIERE PLAN
LANCE UN SITE A PARTIR D'UN MENU DEROULANT
INDIQUE LA RESOLUTION DE L'ECRAN
UN TXT DURANT LE CHARGEMENT D'UNE PAGE
1 LIEN = 2 SITES DANS UNE PAGE !!!!!!!!!

 Sources de la même categorie

Source avec Zip LES COOKIES ET JAVASCRIPT par Zestyr
COOKIES EN JAVASCRIPT par CodeurleGeek
Source avec Zip MULTI-BLOC-NOTE(AVEC COOKIES!) par DomJ
Source avec Zip LES VINGTS JOLIS COOKIES par cornofulgur
Source avec Zip AJOUTER, SUPPRIMER, LIRE COOKIE! par DomJ

Commentaires et avis

Aucun commentaire pour le moment.

 Ajouter un commentaire




Nos sponsors


Sondage...

CalendriCode

Mai 2012
LMMJVSD
 123456
78910111213
14151617181920
21222324252627
28293031   

Consulter la suite du CalendriCode

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 : 1,810 sec (3)

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