如果有人可以指向一个将图像放在对象上的插件,我将非常感激。具体来说,我需要将上传的图像显示在伪三维视图中的瓶子上。我是一个jQuery新手,所以我似乎不可能自己编写这么难的插件。 例如它应该是什么样的:
编辑:用于显示伪3d的含义的马克杯示例。
答案 0 :(得分:0)
您可以通过多种方式实现:
免责声明:以下内容不是广告,我提及仅供参考。
我为a website做了类似的事情,允许客户在袋子上“蚀刻”他们自己的照片。我已经使用PHP后端生成行李缩略图,Raphael.js(与the Raphael free transfrom插件一起使用),用于在行李上交互放置图片。
答案 1 :(得分:0)
首先是一些结构:
<div id="container">
<div id="bottle"></div>
<div id="tag"></div>
</div>
然后你设置样式:
#container{
position:relative
}
#bottle{
background: [your bottle image here, no transparency needed]
z-index:0;
}
#tag{
position:absolute;
top: [whatever px];
left: [another px];
background: [your tag image here with transparent bg]
z-index:100;
}