Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想保存基于绝对定位元素的图像。我有用 PHP 编写的门创建器应用程序。用户选择门的形状,然后是装饰。Jquery 生成带有装饰的门(装饰是绝对元素,因此用户可以创建自己的门)。
但是我该如何处理这样的事情呢?门是背景图片,装饰在这扇门上,我不能用右键保存图片,因为我会选择背景或装饰。
我可以合并这样的图像并使用它以供以后使用吗?
谢谢。
您可以使用用户选择的值生成散列,然后将其发送到 php.ini。
喜欢
var options = {}; options.door = 'user selected door'; options.decorations = { pattern: 'zxs', positionX: 34, positionY: 23 };
然后将其作为 JSON 字符串发送到您的服务器。