1

我正在使用在 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>

它工作得很好,但是,我需要双击图像来放大,是否有可能(可能有额外的标记可用)将其更改为单击?

4

1 回答 1

1

在 Epub3(据我所知)中没有可用的附加标记。我能想到的最简单(IE 非 JS)解决方案只是在锚标记中有一个 href,它可以直接转到图像文件,或者转到带有该图像的 xhtml 页面(这取决于您的最终用户使用哪个阅读器应用程序)已打开,例如在 iBooks 中,您可以直接链接到图像,但在 Kindle 中则不行……)。

希望这会有所帮助,如果您对此感兴趣,很高兴发布 JS 解决方案!

于 2014-01-25T00:39:53.720 回答