Мы можем добиться этого с помощью jquery setTimeout следующим образом:
clipboard.on('success', function(e) {
$(e.trigger).text("Copied!");
e.clearSelection();
setTimeout(function() {
//let x = get the original text for this control and reset again after some time
$(e.trigger).text("original text");
}, 2500);}
мы также можем использовать методы jquery show hide fadeout, такие как:
var clip = new Clipboard('.btn');
clip.on('success', function(e) {
$('.copied').show();
$('.copied').fadeOut(1000);
});