将图像嵌入 html 并保存以供离线查看(即)
是否可以在我的 html 代码中嵌入图像并使其在离线模式下可用。我的目标是创建一个没有任何其他文件与之关联的 html 文件。
谢谢
Is it possible to embed an image in my html code and make it avaible in offline mode. My goal is to create an html file without any other files associated with it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
摘自http://en.wikipedia.org/wiki/Data_URI_scheme#HTML
您的图像需要一个正确的 DataURL。尝试使用 http://dataurl.net/#dataurlmaker 等实用程序来获取 DataURL,然后您可以复制它到你的html中。
Yes.
Taken from http://en.wikipedia.org/wiki/Data_URI_scheme#HTML
You'll need a proper DataURL for your image. Try a utility like http://dataurl.net/#dataurlmaker to get the DataURL, which you can then copy into your html.