下面是示例: http ://www.potterybarn.com/products/saddle-stitch-leather-luggage-tag/?catalogId=69&cm_src=AutoRel
当用户在“查看您的个性化在此项目上的外观”中键入一些文本时。指定文本:' 并按下预览,然后该文本将出现在具有某种特定字体样式的图像上。所以问题是如何做到这一点?这是 JavaScript 吗?如果是的话,我应该从哪里得到这个?
下面是示例: http ://www.potterybarn.com/products/saddle-stitch-leather-luggage-tag/?catalogId=69&cm_src=AutoRel
当用户在“查看您的个性化在此项目上的外观”中键入一些文本时。指定文本:' 并按下预览,然后该文本将出现在具有某种特定字体样式的图像上。所以问题是如何做到这一点?这是 JavaScript 吗?如果是的话,我应该从哪里得到这个?
然后从中汲取灵感
<html>
<head>
<script>
function preview()
{
document.getElementById("txt").innerHTML=document.getElementById("person").value;
}</script></head>
<body>
<div style="position:relative;">
<img src="whatever"><span id="txt" style="font:20px Tahoma;position:absolute;top:0px;left:0px;"></span>
</div>
<label for="person">See how your personalization would look on this item. Specify text:</label><input type="text" id="person" >
<button onclick="preview()">Preview</button></body></html>