Javascript 将bootstrap.css/js应用于Epub文件

Javascript 将bootstrap.css/js应用于Epub文件,javascript,twitter-bootstrap,twitter-bootstrap-3,epub,Javascript,Twitter Bootstrap,Twitter Bootstrap 3,Epub,我用于在web浏览器中渲染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 th

我用于在web浏览器中渲染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>
现在它工作正常

aside { 
    visibility: hidden;
}