为了账号安全,请及时绑定邮箱和手机立即绑定

翻页是翻了,可是有个问题,每次翻页直接到下一章节了,很奇怪。

翻页是翻了,可是有个问题,每次翻页直接到下一章节了,很奇怪。


import Epub from 'epubjs'
const DOWNLOAD_URL = '/static/kill-a-bird.epub'
export default {
  name: 'Ebook',
  methods: {
    prevPage () {
      if (this.rendition) {
        this.rendition.prev()
      }
    },
    nextPage () {
      if (this.rendition) {
        this.rendition.next()
      }
    },
    // 电子书的解析和渲染
    showEpub () {
      // 生成Book
      this.book = new Epub(DOWNLOAD_URL)
      console.log(this.book)
      // 生成Rendition,通过Book.renderTo
      this.rendition = this.book.renderTo('read', {
        width: window.innerWidth,
        height: window.innerHeight
      })
      // 通过Rendition.display
      this.rendition.display()
    }
  },
  mounted () {
    this.showEpub()
  }
}


正在回答

1 回答

你好,源码中没有看出问题,可以提供完整源码看下

0 回复 有任何疑惑可以回复我~
#1

彭小呆 提问者

我换了一个浏览器就可以,低版本的好像不行
2018-10-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

翻页是翻了,可是有个问题,每次翻页直接到下一章节了,很奇怪。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信