2017-10-12 64 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

感謝

回答