SweetAlertでは不可能です。 UIのカウント機能はサポートしていません。しかし決して言わないでください:-)
私はあなたにそれをするのを助けることができる少しハックを準備しました。以下のコードをアプリケーションに追加するだけで、ライブカウントメカニズムが表示されます。また、jQueryも追加することを忘れないでください。
var
closeInSeconds = 5,
displayText = "I will close in #1 seconds.",
timer;
swal({
title: "Auto close alert!",
text: displayText.replace(/#1/, closeInSeconds),
timer: closeInSeconds * 1000,
showConfirmButton: false
});
timer = setInterval(function() {
closeInSeconds--;
if (closeInSeconds < 0) {
clearInterval(timer);
}
$('.sweet-alert > p').text(displayText.replace(/#1/, closeInSeconds));
}, 1000);
結果:ここで
である私はそれがライブラリを変更することなく可能であるとは思いません。おそらく[同様の質問へのこの回答](http://stackoverflow.com/questions/35718899/countdown-in-setinterval-function-with-sweet-alert-plugin)はあなたのために働くことができます。 – michaPau
私の答えを見てください。あなたは完全な解決策を見つけるでしょう(: –