function changeKeyboardHeight(e) {
const {
height,
duration,
} = e.detail
// emoji_box存在的时候,就不给高度了
if(this.emoji_list_show) {
this.keyboard_height = 0
} else {
this.keyboard_height = this.emoji_box_height
}
console.log({keyboard_height: this.keyboard_height, height})
// 取最高键盘高度给emoji_box,iOS可能多次获取不同的键盘高度
if(height > this.emoji_box_height) {
this.emoji_box_height = height
this.$emit('keyboard', e.detail)
}
// console.log(e.detail)
}
小程序获取键盘高度安全方案
最新推荐文章于 2025-03-18 17:36:17 发布