JSFiddle - React, Tailwind, and code Playground
HTML
<div id="c1"></div>
CSS
#c1 {
border: thin solid black;
width: 400px;
height: 200px;
background: url('http://lorempixel.com/400/200/sports/1/') top left no-repeat;
background: url('http://lorempixel.com/400/200/sports/2/') top -400px;
display: inline-block;
}
#c1:hover {
background: url('http://lorempixel.com/400/200/sports/1/') top -400px no-repeat;
background: url('http://lorempixel.com/400/200/sports/2/') top left no-repeat;
}