You can use the following code for a mobile phone as well as for a desktop. Please let me know.
$('body').bind( "touchstart mouseup", function(e){
$('div#extras').fadeTo('fast', 1);
});
$('body').bind( "touchend mousedown", function(e){
$('div#extras').delay(2000).fadeTo(1500, 0);
});
source
share