JSFiddle - React, Tailwind, and code Playground

by Gwyn Milcote

HTML

<script src="http://www.menucool.com/slider/prod/image-slider-3.jpg"></script>
<input type="radio"  name="ch" value="https://beastkeeper.com/resources/pets/gryphon/a1_b4.png" onClick="col(this.value);"> White 

<input type="radio"  name="ch" value="https://beastkeeper.com/resources/pets/gryphon/a6_b4.png" onClick="col(this.value);"> Mix 

<input type="radio"  name="ch" value="https://beastkeeper.com/resources/pets/gryphon/a6_b5.png" onClick="col(this.value);"> Black 

<div id="gryphex1"></div>

CSS

#gryphex1 { height:300px; width:350px; }

JavaScript

function col(bg) {
    document.getElementById("gryphex1").style.backgroundImage = "url(" + bg + ")";
}