应用bootstrap.css / js ot Epub文件

时间:2015-02-03 16:26:45

标签: javascript twitter-bootstrap twitter-bootstrap-3 epub

我在网络浏览器中使用Epub.js来渲染epub文件。但我需要在书中使用bootstrap样式(也需要popovers)。这可能吗? 谢谢!

1 个答案:

答案 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;
}

现在它正常工作。