我正在使用在 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>
它工作得很好,但是,我需要双击图像来放大,是否有可能(可能有额外的标记可用)将其更改为单击?