Showing all posts tagged #ios:


iOS 滑動卡卡不順暢 scroll inside scroll

Posted on November 10th, 2017

當 overflow scroll 的區塊中有其他 overflow 是 scroll 時, iOS 裝置的滑動會卡卡的,沒有硬體的慣性滑動效果

嘗試在內層的 scroll 元件 css 加上 -webkit-overflow-scrolling: touch

透過輸入法組字事件 CompositionEvent 解決 iOS 上可能無法觸發 GoogleMap Autocomplete

Posted on September 13th, 2017


透過輸入法組字事件 CompositionEvent 解決 iOS 可能無法正確觸發 GoogleMap Autocomplete
// hack: 讓 iOS 鍵盤拼完字會跳出 google map 的 autocomplete
$(pacInput).on('compositionend', function() {
$(this).trigger('blur').trigger('focus');
});




相關事件:
  1. compositionstart : 輸入法組字開始
  2. compositionend : 輸入法組字結束
  3. compositionupdate: 輸入法修改字詞

[1] 參考 MDN: https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent


Liullen

Notes from my experience.