touchstart无法触发
来源:4-3 阅读器翻页功能实现
weixin_慕后端5451418
2021-06-17
initEpub () {
const url = this.baseUrl + this.fileName + '.epub'
console.log(url)
this.book = new Epub(url)
this.rendtion = this.book.renderTo('read', {
width: innerWidth,
height: innerHeight,
method: 'default' // 保证其在微信中正常打开
})
console.log(this.book)
this.rendtion.display()
this.rendtion.on('touchstart', event => {
console.log(event)
}) // 绑定iframe触摸开事件
this.rendtion.on('touchend', event => {
console.log(event)
}) // 绑定iframe触摸结束事件
},
- 老师我触发不了touchstart的事件怎么解决呢
- https://gitee.com/pankrati/vue-muke-book 这个是gitee地址
写回答
1回答
-
扬_灵
2021-06-17
同学你好,你上面提供的地址中无法打开,检查一下项目仓库的地址是否正确
032021-06-17
相似问题