react-wx-images-viewer icon indicating copy to clipboard operation
react-wx-images-viewer copied to clipboard

Images viewer is a react component use in mobile website App, that function same as Weixin native viewer.

Results 13 react-wx-images-viewer issues
Sort by recently updated
recently updated
newest added

图片加载完之前,点击背景图片会报错 ImageContainer.js:111 Uncaught TypeError: Cannot read properties of undefined (reading 'width')

微信小程序的图片预览截图。 ![WechatIMG65](https://user-images.githubusercontent.com/9426456/90210660-27b9da80-de21-11ea-98f0-3f34817c6991.jpeg)

在图片查看器的蒙层上下滑动后,退出查看器,界面会相应的上下滑动到别的地方去。 猜测是 touch 相关事件继续传播了,有使用 e.preventDefault 吗? 还是很感谢大大写的组件哈!我现在临时的解决办法是,在打开图片查看器先 mark 下当前 document 的 scrollTop,关闭后再重新设置当前文档的 scrollTop! 希望大大能从根源解决这个问题!

我想把pointer的change事件去掉,传的是一个component,但是传了之后没有效果怎么回事? ``` getPointer = () => { console.log(11111); this.setState({ isOpen: false }); return ( {}}> ); } ``` pointer组件内容: ``` import React, { PureComponent } from 'react'; import PropTypes from...