我用来将图像和字幕插入epub 3文件,顺便说一句,我需要在标题上包括一个弹出注释。
这是代码:
<figure>
<div class="figures">
<!-- ibooks doesnt read width in img class, has to warp in div -->
<img class="frame" src="image/01_fmt.jpeg" alt="..." />
</div>
<figcaption>
<p class="imagegroup"><a epub:type="noteref" href="#n1" class="superscript">1</a></p>
<aside epub:type="footnote" id="n1">
<p>pop up notes, <i>in italic text here</i>.</p>
</aside>
</figcaption>
</figure>
它运行良好,但是,我需要将图像点击以放大,是否有可能(可能是额外的标记)将其更改为单点?
在epub3中没有其他标记(我知道)。我能想到的最简单的(即非JS)解决方案只是在锚固标签中具有直接输入图像文件的href或带有该图像的XHTML页面的HREF(这取决于哪个读取器应用程序应用程序应用程序的最终用户您的最终用户在iBooks中,例如,您可以直接链接到图像,但不能在Kindle中链接...)。
希望这会有所帮助,如果您感兴趣的话,请乐于发布JS解决方案!