$(function(){ var divObjs = $('.fishbody'); $(document).on('touchstart', function(e){ e.preventDefault(); }) $(document).on('touchmove mousemove', function(e){ divObjs.each(function(index,element){ setTimeout(function(){ $(element).css({ 'top':e.originalEvent.pageY, 'left':e.originalEvent.pageX }); },400-index*50) }) }) })