应用 bootstrap.css/js ot Epub 文件

Apply bootstrap.css/js ot Epub file

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

我找到了解决方案。 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;
}

现在可以正常使用了。