用于z-index
确定哪个图像在顶部并且可能position:absolute
在一个图像上,以便图像重叠。
但是这里可以有很多方法。试试这个:http: //jsfiddle.net/N6rjG/
在那里,您将 T 恤作为 div 的背景,然后将选定的图像放入其中。脚本已经存在并且很简单。
html:
<!-- This one will be the tshirt--->
<div id="tshirt">
</div>
<h1>Click on Image to Select Design</h1>
<!--the choices-->
<img id="d1" class="d" src="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcQUomLjtjuA81HKgj48ZaIT6Uvd9JGttmUvVcFO3j3ytp6v6MV0" />
<img id="d2" class="d" src="http://www.ironman2.net/iron-man.jpg" />
<img class="d" src="http://www.unc.edu/~bhamidi/personal/naruto.jpg" />
CSS:
#tshirt{
float:left;
width:390px;
height:400px;
background:url(http://www.schumacher-fanclub.com/media/SFR1119-ferrari-t-shirt-small-scudetto-red.jpg);
}
.d{
width:100px;
height:130px;
cursor:pointer;
}
脚本:
$('img').click(function(){
$("#tshirt").html(' ');
$(this).clone()
.appendTo("#tshirt")
.css({margin:'130px 0 0 150px'});
});