console
$(document).ready(function(){
$("#seed").bind("click",function(){
$("img").remove();
$("#seed").prepend("<img src='https://img-blog.csdnimg.cn/2019102413323680.png' />")
});
$("#grow").bind("click",function(){
$("img").remove();
$("#seed").append("<img src='https://img-blog.csdnimg.cn/20191024133226601.png' />")
});
$("#bloom").bind("click",function(){
$("img").replaceWith("<img src='https://img-blog.csdnimg.cn/20191024133134783.png' />")
});
$("#fruit").bind("click",function(){
$("<img src='https://img-blog.csdnimg.cn/20191024133217385.png' />").replaceAll("img");
});
});
<body>
<div id="bg">
<div id="seed"></div>
<span id="grow"></span>
<span id="bloom"></span>
<span id="fruit"></span>
</div>
</body>
div{
font-size: 12px;
border: #999 1px solid;
}
#bg{
width: 580px;
height: 439px;
background-image: url(https://img-blog.csdnimg.cn/20191024133152373.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzI0MTc1ODA1Mzg=,size_16,color_FFFFFF,t_70);
}
img{
position: absolute;
top: -155px;
left: 150px;
}
#seed{
background-image: url(https://img-blog.csdnimg.cn/20191024133253443.png);
width: 56px;
height: 56px;
position: absolute;
top: 380px;
left: 99px;
cursor: hand;
}
#grow{
background-image: url(https://img-blog.csdnimg.cn/20191024133333234.png);
width: 56px;
height: 56px;
position: absolute;
top: 380px;
left: 204px;
cursor: hand;
}
#bloom{
background-image: url(https://img-blog.csdnimg.cn/2019102413332496.png);
width: 56px;
height: 56px;
position: absolute;
top: 380px;
left: 309px;
cursor: hand;
}
#fruit{
background-image: url(https://img-blog.csdnimg.cn/20191024133315313.png);
width: 56px;
height: 56px;
position: absolute;
top: 380px;
left: 418px;
cursor: hand;
}