Changer une propiété css via javascript
Résolu
gibnem
-
gibnem Messages postés 20 Date d'inscription Statut Membre Dernière intervention -
gibnem Messages postés 20 Date d'inscription Statut Membre Dernière intervention -
A voir également:
- Changer une propiété css via javascript
- Changer dns - Guide
- Changer carte graphique - Guide
- Changer wifi chromecast - Guide
- Changer clavier qwerty en azerty - Guide
- Changer extension fichier - Guide
7 réponses
as tu mis dans ta page <body id="body"> ?
sinon tu peux esayer:
sinon tu peux esayer:
document.body.style.background = ....
en faite dans ma page de style css ila ya
body {
background: #0012ff url(images/30.png) no-repeat right bottom fixed;
margin-bottom: 20px;
}
body {
background: #0012ff url(images/30.png) no-repeat right bottom fixed;
margin-bottom: 20px;
}
j'ai essayé comme ce que ta dit
if(largeur < 1200){
document.body.style.background = #0012ff url(images/30.png) no-repeat right bottom fixed;
}
else{
document.body.style.background = #2746E0 url(images/3.png) no-repeat right bottom fixed;
}
mais ça n'a pas marché!!
if(largeur < 1200){
document.body.style.background = #0012ff url(images/30.png) no-repeat right bottom fixed;
}
else{
document.body.style.background = #2746E0 url(images/3.png) no-repeat right bottom fixed;
}
mais ça n'a pas marché!!
et:
if(largeur < 1200){ body.style.background = #0012ff url(images/30.png) no-repeat right bottom fixed; } else{ body.style.background = #2746E0 url(images/3.png) no-repeat right bottom fixed; }
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
pardon:
if(largeur < 1200){ body.style.background =" #0012ff url(images/30.png) no-repeat right bottom fixed"; } else{ body.style.background =" #2746E0 url(images/3.png) no-repeat right bottom fixed"; }
Bonsoir,
Essaie en ajoutant des double-quote :
Cordialement,
Essaie en ajoutant des double-quote :
document.body.style.background = "#0012ff url(images/30.png) no-repeat right bottom fixed";
Cordialement,
bon merci a vous tous
voici le code final et ça marche cristal XD
if(largeur < 1200){
document.body.style.background = "#0012ff";
document.body.style.backgroundImage='url(images/30.png)';
document.body.style.backgroundPosition = 'right bottom';
document.body.style.backgroundRepeat = 'no-repeat';
document.body.style.backgroundAttachment = 'fixed';
}
else{
document.body.style.background = "#2746E0";
document.body.style.backgroundImage='url(images/3.png)';
document.body.style.backgroundPosition = 'right bottom';
document.body.style.backgroundRepeat = 'no-repeat';
document.body.style.backgroundAttachment = 'fixed';
}
voici le code final et ça marche cristal XD
if(largeur < 1200){
document.body.style.background = "#0012ff";
document.body.style.backgroundImage='url(images/30.png)';
document.body.style.backgroundPosition = 'right bottom';
document.body.style.backgroundRepeat = 'no-repeat';
document.body.style.backgroundAttachment = 'fixed';
}
else{
document.body.style.background = "#2746E0";
document.body.style.backgroundImage='url(images/3.png)';
document.body.style.backgroundPosition = 'right bottom';
document.body.style.backgroundRepeat = 'no-repeat';
document.body.style.backgroundAttachment = 'fixed';
}