我使用Epub.js在网页浏览器中呈现epub文件.但是我需要在书中使用引导样式(也需要弹出式)。这个是可能的吗?谢谢!
发布于 2015-02-03 20:10:10
我找到了解决办法。Epub 3格式有注释。
<p>This sentence contains a <a href="#note" epub:type="noteref">commented phrase</a>.
</p>
<aside id="note" epub:type="footnote">This is the comment.</aside>epub.js并没有隐藏<aside>,然后我在epub stylesheet.css中设置
aside {
visibility: hidden;
}现在它正常工作了。
https://stackoverflow.com/questions/28303866
复制相似问题