您的位置:首页 > Web前端

RSC-010, ERROR, [Reference to non-standard resource type found.]

2016-01-21 09:21 706 查看
使用epubcheck检查epub文件,报错:

<message>RSC-010, ERROR, [Reference to non-standard resource type found.], chapter-001.xhtml (1087-112)</message>

<message>RSC-011, ERROR, [Found a reference to a resource that is not a spine item.], chapter-001.xhtml (1087-112)</message>

源文件:

<div class="imagediv3">
<a class="image4" style="width:50px;height:50px;z-index:1;" href="./Media/chapter-001hyperlinkitem1.mp4"/>
<img class="image4" src="Media/chapter-001image1.jpeg" id="imageItem-4" alt="Media/chapter-001image1.jpeg"/>
</div>

解决:
<div class="imagediv3">
<video src="./Media/chapter-001hyperlinkitem1.mp4" id="videoID_1">Your browser does not support the video element.</video>
<a class="image4" style="z-index:1;" href="javascript:document.getElementById('videoID_1').play();"/>
<img class="image4" src="Media/chapter-001image1.jpeg" id="imageItem-4" alt="Media/chapter-001image1.jpeg"/>
</div>

只消除了报错信息,暂时无法实现点击图片播放视频
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  epub epubcheck html5 video