我試圖讓腳註包含圖像。帶有用於Epub的圖像的iBook腳註Aside標記
彈出式工程中,圖像的大小有合適的大小,但圖像本身不顯示。
下面是屏幕截圖,後面跟着代碼。
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<title>test</title>
</head>
<body>
<div>
<p>The <a epub:type="noteref" href="#test">star</a> looks blue.</p>
</div>
<aside epub:type="footnote" id="test">
<p><img alt="" src="../Images/Mario.png" />The image should be above this line</p>
</aside>
</body>
</html>
您是否確認圖像正文內容正確加載? –