Answers for "js change background image"

21

javascript change image src

//change image src
document.getElementById('myImageID').src="images/my_other_image.png";
Posted by: Guest on July-31-2019
0

change background with js

document.body.style.backgroundColor = "red";
Posted by: Guest on March-16-2021
0

set an attribute background image javascript

function bg() {

   var imgCount = 3;
   var dir = 'http://local.statamic.com/_themes/img/';
   // I changed your random generator
  	//floor: helps getting a random integer
   var randomCount = (Math.floor(Math.random() * imgCount));
   // I changed your array to the literal notation. The literal notation is preferred.
   var images = ['001.png', '002.png', '003.png'];
   // I changed this section to just define the style attribute the best way I know how.
   document.getElementById('banner').setAttribute("style", "background-image: url(" + dir + images[randomCount] + ");background-repeat: no-repeat;background-size: 388px 388px");
}
// Don't forget to run the function instead of just defining it.
bg();
Posted by: Guest on April-15-2020
0

change background with js

object.style.background
Posted by: Guest on March-16-2021
0

change background with js

document.body.style.backgroundPosition = "top right";
Posted by: Guest on March-16-2021
0

change background with js

document.getElementById("myDIV").style.background = "url('smiley.gif') blue repeat-x center";
Posted by: Guest on March-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language