1#box {
2background: url("https://priteshgupta.com/wp-content/uploads/2011/06/html-ipsum.png");
3width:200px;
4height:200px;
5margin:50px;
6}
7
1var box = document.getElementById('box'),
2imgs = ['/image.jpg', '/image2.jpg'];
3
4box.onclick = function () {
5img = imgs.shift();
6imgs.push(img);
7
8box.style.backgroundImage = img;
9};
10