如何在网页中嵌入 .epub?
是否有任何类型的查看器或插件可以允许在网页上查看 .epub 文档?谷歌搜索发现了大量可安装的 epub 查看桌面软件,但我似乎找不到任何可以在网页上嵌入这种格式的东西。或许各位对此有所了解?
Is there a viewer or plugin of any kind that would allow an .epub document to be viewable on a web page? A Google search turned up tons of installable epub viewing desktop software but I couldn't seem to find anything for embedding this format on a web page. Perhaps you folks have some insight into this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
epub 文件只是 HTML/XML 和 CSS,因此您可以轻松打开 epub 容器(它是一个 zip),然后使用 PHP 等语言解析其中的 XML。
做到这一点应该不会太难。
格式如下:
以下是您可能在第 1 章中找到的内容示例:
epub files are just HTML/XML and CSS, so you could easily open the epub container (it's a zip), then parse the XML inside using a language like PHP.
It shouldn't be too difficult to do that.
The format looks like:
Here's an example of the content you might find in chapter1:
我建议在大多数情况下,这应该使用 Javascript 使用诸如以下之一的库来完成 如何使用javascript读取epub文件
I'd suggest that this should in most cases be done with Javascript using a library like one of these How to read epub files using javascript