我在网络浏览器中使用Epub.js来渲染epub文件。但我需要在书中使用bootstrap样式(也需要popovers)。这可能吗? 谢谢!
答案 0 :(得分:0)
我找到了解决方案。 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;
}
现在它正常工作。