Jump to content

onclick changer le css background image?


Recommended Posts

bonjour

j'ai besoin d'une petite aide svp

je souhaiterais faire un lien sur la page de ma boutique qui ferai appel a un autre global.css

en fait je voudrais faire un lien , en cliquand dessu mon image d'arriere plan change

pouvez vous m'aidez svp
merci

Link to comment
Share on other sites

Bonjour,
essaye d'integrer le code PHP et HTML:

<?php
   $imgs = array('fond1.jpg', 'fond2.jpg', 'fond3.png');
   $randBg = $imgs[rand(0,count($imgs)-1)];
?>
<body style="background: url(<?php echo $randBg; ?> );">



enleve aussi le style background dans ton global.css.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...