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.
嗨,我创建了一个 GIF 图像。我还使用 Photoshop 给出了超链接。在查看预览时,超链接正在工作。保存后,当我在浏览器中看到超链接不起作用时。谁能帮我?
来自 Photoshop 的超链接不起作用。你必须做html编码。在任何文本编辑器中创建一个简单的文本文件,并用 TEST.html 保存它(.html 扩展名是为了让网络浏览器识别 html 文件)
<a href="http://www.google.com"> <img src="http://www.exapmle.com/yourImage.gif" /> </a>
使用上述格式将您的 gif 链接到所需位置(我使用 google.com 作为示例)。