Epubjs核心
安装epubjs
npm install epubjs
电子书的解析和渲染
-
将电子书存放至public文件夹
import Epubjs from 'epubjs'; const DOWNLOAD_URL='121312.epub'//指向电子书的下载路径
-
生成Epubjs电子书
this.book=new Epub(DOWNLOAD_URL)
-
通过this.book.renderTo()生成rendition对象
this.rendition=this.book.renderTo('read',{ width:window.innerWidth, height:window.innerHeight &nb