我看着jquerymobile文件,看到的事件嗎?什麼是垂直的掠過
Q
什麼是垂直的掠過
4
A
回答
3
不幸的是swipeup和swipedown在jQuery Mobile的不存在,他們沒有刨了1.3版本。這裏有第三方插件:http://developingwithstyle.blogspot.com/2010/11/jquery-mobile-swipe-up-down-left-right.html。像使用正常事件一樣使用它們:swipedown和swipeup。
如果您需要此實施,您還可以使用此插件:http://www.netcu.de/jquery-touchwipe-iphone-ipad-library。它也適用於Android設備。這是一種最糟糕的情況解決方案,因爲與官方活動不同,那些桌面瀏覽器無法使用。
下面是一個工作示例,測試它唯一的移動設備:http://jsfiddle.net/Gajotres/WYnnk/
$("#wrapper").touchwipe({
wipeLeft: function() {
$("#carousel").trigger("next", 1);
},
wipeRight: function() {
$("#carousel").trigger("next", 1);
},
min_move_x: 20,
min_move_y: 20,
preventDefaultEvents: true
});
0
http://jquerymobile.com/test/docs/api/events.html
我認爲有vmouseover,這是一個虛擬的鼠標懸停
1
通過添加以下代碼到pageshow處理,我是能夠模擬拉刷新的頭功能我的頁面...
// Set aside the thresholds so they can be reset later.
var _scrollSupressionThreshold = $.event.special.swipe.scrollSupressionThreshold;
var _horizontalDistanceThreshold = $.event.special.swipe.horizontalDistanceThreshold;
var _verticalDistanceThreshold = $.event.special.swipe.verticalDistanceThreshold;
// Adjust the thresholds for a vertical swipe.
$.event.special.swipe.scrollSupressionThreshold = 5;
$.event.special.swipe.horizontalDistanceThreshold = 1;
$.event.special.swipe.verticalDistanceThreshold = 128;
// Listen for the swipe event...
$('#my_jqm_page div[data-role="header"]').on("swipe", function() {
// Reset thresholds.
$.event.special.swipe.scrollSupressionThreshold = _scrollSupressionThreshold;
$.event.special.swipe.horizontalDistanceThreshold = _horizontalDistanceThreshold;
$.event.special.swipe.verticalDistanceThreshold = _verticalDistanceThreshold;
// Take action...
console.log('Vertical swipe!');
});
相關問題
- 1. 怎麼做垂直的掠過
- 2. 的Android AppWidget垂直的掠過 - 如何
- 3. Android應用的Widget垂直的掠過:accuweather.com
- 4. 什麼是垂直和水平分佈?
- 5. 什麼是垂直對齊用於CSS?
- 6. 爲什麼這不是垂直居中?
- 7. Jquery垂直居中..錯誤是什麼?
- 8. 爲什麼>直角引號(")不是垂直對齊的?
- 9. 爲什麼垂直方向不能垂直渲染圖像?
- 10. 爲什麼WPF DataGrid的垂直滾動量過大?
- 11. Android的是什麼標準繪製的3條線垂直
- 12. 爲什麼我的元組列表是垂直的?
- 13. 爲什麼我的div不是垂直對齊中間的?
- 14. 爲什麼我的python列表是垂直的?
- 15. 爲什麼垂直LED的數量必須是8的倍數?
- 16. 垂直分區VS水平分區的好處是什麼?
- 17. 「q | p - 1」中的垂直條是什麼意思?
- 18. 什麼是更好的垂直分頻器解決方案?
- 19. 垂直存儲sql數據的好處是什麼?
- 20. 製作此垂直菜單的最簡單方法是什麼?
- 21. 單個垂直條在JavaScript中的含義是什麼?
- 22. 什麼元素是負責中心的菜單項垂直
- 23. 穩定垂直文字節奏的最佳方法是什麼?
- 24. 爲什麼我的進度條不是垂直居中?
- 25. 大O符號中變量的垂直條是什麼意思?
- 26. 爲什麼這不是絕對定位的div垂直居中?
- 27. 爲什麼Flexbox不能垂直居中?
- 28. 爲什麼HTML跨越垂直堆疊?
- 29. 垂直對齊需要什麼工作?
- 30. 「設置掠影會話名稱」是做什麼的?
是不是你在垂直和虛擬之間混淆? –
不,這是一個虛擬的垂直鼠標,我想 - 都!這是我的理解 –
這是一個很好的問題...... –