提交 5badfe66 编写于 作者: X xiaoyucoding

fix(h5): 修复在部分浏览器中调用选取媒体的 API 会导致页面滚动的问题

上级 7b65fa39
......@@ -15,7 +15,9 @@ const _createInput = function (options) {
'visibility': 'hidden',
'z-index': -999,
'width': 0,
'height': 0
'height': 0,
'top': 0,
'left': 0
})
inputEl.accept = 'image/*'
if (options.count > 1) {
......
......@@ -15,7 +15,9 @@ const _createInput = function (options) {
'visibility': 'hidden',
'z-index': -999,
'width': 0,
'height': 0
'height': 0,
'top': 0,
'left': 0
})
inputEl.accept = 'video/*'
// 经过测试,仅能限制只通过相机拍摄,不能限制只允许从相册选择。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册