我正在使用将图像和标题插入到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>
它运作良好,但是,我需要双击图像放大,是否有可能 - 可能有额外的标记可用 - 将其更改为单击?
答案 0 :(得分:1)
在Epub3中没有可用的额外标记(我知道)。我能想到的最简单的(IE非JS)解决方案就是在锚标签中直接使用href,直接转到图像文件,或者转到带有该图像的xhtml页面(这取决于最终用户的读者应用程序)在iBooks中,您可以直接链接到图像,但不能在Kindle中链接...)。
希望这有帮助,很高兴发布JS解决方案,如果您感兴趣的话!