<figure>
<img id="redPic" src="https://javascript.ru/cat/list/jquery_54.png">
<figcaption>Красная картинка</figcaption>
</figure>
<figure>
<img id="greenPic" src="https://javascript.ru/cat/list/scriptaculous_54.png">
<figcaption>Зелёная картинка</figcaption>
</figure>
<img id="transparentBackground" src="https://img-fotki.yandex.ru/get/15517/66124276.2e4/0_c2654_881ccb5_S.png" ></img>
<script>
redPic.onclick = function() {
transparentBackground.style.backgroundImage = "url(" + this.src + ")";
}
greenPic.onclick = function() {
transparentBackground.style.backgroundImage = "url(" + this.src + ")";
}
</script>
|