f******p 发帖数: 173 | 1 http://onswipe.com/
中间的 from click to touch的那个swipe效果
js里
function onMove (e) {
// X dimension variables
var touchX = e.originalEvent.touches && e.originalEvent.touches[0] && e.
originalEvent.touches[0].pageX;
var offsetX = $(this).offset().left;
var mouseX = (touchX || e.pageX) - offsetX;
var overlayLeftX = mouseX + 'px';
// Y dimension variables
var touchY = e.originalEvent.touches && e.originalEvent.touches[0] && e.
originalEvent.touches[0].pageY;
var offsetY = $(this).offset(... 阅读全帖 |
|