[HTML/JavaScript] Couleur de fond dynamique

Maxence -  
 fossoyeur -
Bonjour a tous,

J'ai un ptit souci de programmation ... Je m'explique :

J'aimerais qu'en cliquant sur des images qui sont affichées sur ma page html, par exemple une image jaune, la couleur du fond de ma page prenne la couleur de l'image ...

Voila, la couleur de l'image n'est en realité que prévu pour que la personne sache quelle va etre la couleur du site apres avoir cliqué dessus.

Merci d'avance pour votre aide, et si vous voulez plus d'explications demandez moi :)

A plus ,

Maxence
Configuration: Windows XP
Firefox 2.0.0.3

5 réponses

  1. Utilisateur anonyme
     
    Salut!

    Voici le code qui te permet de faire cela:

    <html>
    	<!-- Author: HackTrack -->
    	<head>
    		<title>Démo de sélection de couleur de fond</title>
    		<script language="javascript" type="text/javascript">
    			function changeBackgroundColor(elm){
    			window.status=elm.style.backgroundColor;
    				document.body.style.backgroundColor=elm.style.backgroundColor;
    			}
    		</script>
    		<style>
    			table, tr, td{
    				margin: 0px;
    				padding:0px;
    				border: solid 1px #0f0f0f;
    			}
    			div{
    				width: 50px;
    				height: 50px;
    			}
    		</style>
    	</head>
    	<body>
    		<table>
    			<tr>
    				<th colspan="4">Choisissez la couleur de fond</th>
    			</tr>
    			<tr>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #000000;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #111111;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #222222;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #333333;"></div></td>
    			</tr>
    			<tr>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #444444;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #555555;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #666666;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #777777;"></div></td>
    			</tr>
    			<tr>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #888888;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #999999;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #aaaaaa;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #bbbbbb;"></div></td>
    			</tr>
    			<tr>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #cccccc;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #dddddd;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #eeeeee;"></div></td>
    				<td><div onclick="javascript: changeBackgroundColor(this);" style="background-color: #ffffff;"></div></td>
    			</tr>			
    		</table>
    	</body>
    </html>
    


    ;-)
    HackTrack
    21
    1. boulet-sensei
       
      merci pour ce petit bout de code ! je ne connais quasiment pas javascript et ca m a bien servi pour un projet au boulot ! merci a toi
      0
    2. gilbert1995 Messages postés 519 Statut Membre 29
       
      comment crée un cookie pour sauvegarder la couleur sur les pages futur
      0
    3. oj
       
      Bien joué. Simple et net.
      0
  2. xjl Messages postés 232 Statut Membre 183
     
    Salut,

    https://www.toutjavascript.com/main/script.php?url=chpcolor

    Si tu t'y connais un peu en javascript, tu pourras sûrement adapter ce script prévu pour changer la couleur de fond d'un cadre en fonction de la valeur d'un champ texte...

    Fondamentalement, ça doit marcher pareil que ce que tu veux faire, enfin je pense...
    6
  3. BenjD90 Messages postés 98 Statut Membre 1
     
    Merci, c super ton code, simple, pile ce que je cherchais, c bête qu'il ne soit pas mis plus en avant
    Sait tu comment on fait la même chose avec une image de fond (changeBackgroundimage(this) ou changeBackgroundImage(this) ne marchent pas)
    1
  4. Maxence
     
    Et bien merci tout d'abord ...

    Mais par contre, je m'y connais un peu en JavaScript et ce truc ne m'aide pas trop trop ... :s
    En fait j'avais vu un truc du genre on choisi parmi un menu defilant une couleur et hop le fond de la page prend cette couleur mais ca non plus ca m'aidait pas donc j'aurais vraiment besoin d'une aide ciblée si possible :) ...

    En tout cas merci a toi :)

    PS : je vais quand meme regarder en profondeur ce code ... ;)
    0
  5. Vous n’avez pas trouvé la réponse que vous recherchez ?

    Posez votre question
  6. R-C
     
    n'étant pas un pro du html, je ne peux pas t'indiquer les balises, mais je pense qu'il est possible de faire quelque chose du genre:
    un clic sur la couleur définit une variable, que tu utilises ensuite pour définir la couleur de ta page...

    j'espère que ceci t'aidera au moins un peu
    0
    1. granbow
       
      merci à toi pour ton aide
      0
    2. prosthetiks Messages postés 1309 Statut Membre 431
       
      Déterrage de topic en vue ! Après 4 ans de silence, le revoilà en tête de liste. Etait-ce vraiment nécessaire ?
      0
    3. fossoyeur
       
      Merci c'est cool
      0