有两个问题:设置背景颜色前几次成功,后面不行,菜单栏出现后右侧出现空白区域
设置背景颜色并不是每次都成功,前3次都成功了,后面基本都失败
设置背景颜色并不是每次都成功,前3次都成功了,后面基本都失败
2020-05-24
已解决,两种方案
切换epub版本 用0.3.71版本>npm install epubjs@0.3.71
修改setTheme
setTheme(index){ const name = this.themeList[index].name // this.book.rendition.themes.select(name) const bodyObject = this.themeList[index].style.body for(let key in bodyObject){ this.book.rendition.themes.override(key,bodyObject[key],true) } },
举报