Android/iPhone webkit, event triggered on keyboard pop?

后端 未结 1 1892
天命终不由人
天命终不由人 2021-01-15 14:04

On mobile webkit, when focusing on a text input field, the keyboard pops up.
Is there any known event to bind on at the end of the keyboard slide animation??

相关标签:
1条回答
  • 2021-01-15 14:43

    so apparently not: http://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html#//apple_ref/doc/uid/TP40006511-SW5

    I found the most useful information on this other thread: iPad Web App: Detect Virtual Keyboard Using JavaScript in Safari?

    on Android, we can detect that the keypad is up using the window.innerHeight value, but not on iPhon, the value is not updated... (which also does not help to align stuff at the bottom..)

    so I personally just assume the keyboard is popped up 700ms after a text input is entered... ugly, but it works!

    0 讨论(0)
提交回复
热议问题