2017-10-12 25 views
0

我有这样的代码在这里:如何在touchstart/hold上删除默认的外框轮廓动画?

var t 

$('#camera').on("touchstart", function(e) { 
    event.preventDefault(); 
    t = setTimeout(function(){ $("#filters").addClass("reveal-filters"); }, 1000); 
}); 

$('#camera').on("touchend", function(e) { 
    clearTimeout(t); 
}); 

我已经成功地禁用上下文菜单,但我怎么能删除,当你触摸并按住出现在Chrome黑盒子?

circle represent tap-hold

感谢

回答