- click
- tap
- taphold
- swipe
- swipeleft
- swiperight
- orientationchange
- resize
- scrollstart
- scrollstop
イベントのサンプル
サンプルではイベントが発生すると、そのイベント名の文字列がcontent内のdiv要素に追加されます。clearボタンを押すと、追加されたイベント名文字列を消去します。
orientationchangeは、windowオブジェクトが発生するイベントなので、windowオブジェクトに対して、コールバックをbindしています。
$(window).bind("orientationchange",function(e) { $('#text').text($('#text').text() + 'o-change[' + e.orientation + '] '); });
参考:
http://stackoverflow.com/questions/10023328/orientation-change-event-implementation-by-jquery-mobile-in-phone-gap
No comments:
Post a Comment