how can we change background in loop img in webpages
var box = document.getElementById('box'),
imgs = ['/image.jpg', '/image2.jpg'];
box.onclick = function () {
img = imgs.shift();
imgs.push(img);
box.style.backgroundImage = img;
};
how can we change background in loop img in webpages
var box = document.getElementById('box'),
imgs = ['/image.jpg', '/image2.jpg'];
box.onclick = function () {
img = imgs.shift();
imgs.push(img);
box.style.backgroundImage = img;
};
how can we change background in loop img in webpages
<div id='box'></div>
how can we change background in loop img in webpages
#box {
background: url("https://priteshgupta.com/wp-content/uploads/2011/06/html-ipsum.png");
width:200px;
height:200px;
margin:50px;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us