vue 集成epub.js
1、安装nbpminstall epubjs2、.vue文件引入import ePub from 'epubjs'3、渲染_this.book = ePub(o.request.response,null);_this.rendition = _this.book.renderTo(id, {width: window.innerWidth,height: win...
·
1、安装
nbpm install epubjs
2、.vue文件引入
import ePub from 'epubjs'
3、渲染
_this.book = ePub(o.request.response,null); _this.rendition = _this.book.renderTo(id, {width: window.innerWidth, height: window.innerHeight, manager: "continuous", flow: "scrolled"});//scrolled-doc _this.rendition.display();
注意:o.request.response返回的是arraybuffer,也可以是epub文件地址
.
更多推荐
已为社区贡献2条内容
所有评论(0)