我正在嘗試執行Toastr。現在改變Toastr位置?
我能得到警報和祝酒詞如預期,但我不能應用其他選項。 它只是遵循默認選項。
我想是這樣的:
var options = {
"closeButton": true,
"debug": false,
"newestOnTop": false,
"progressBar": true,
"positionClass": "toast-bottom-center",
"preventDuplicates": false,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
}
$.simplyToast('This is a success message!', 'success',options);
console.log(options);
console.log($.simplyToast);
現在它不具備行爲如預期,我已經設置positionClass到BottomCenter但我總是默認顯示右上角。
我怎樣才能改變像其demo page提到的選項。
什麼是'$ .simplyToast'? AFAIK,這些選項是'toastr',而不是'simplyToast'。 – 31piy
我從Github下載了代碼,它幫助注意到演示頁面是這樣的,所以我使用的代碼,可以幫助我與toastr – Rajan
SimplyToast和Toastr是兩個單獨的插件。有關toastr的更多詳細信息,請參閱[本站點](https://github.com/CodeSeven/toastr)。 – 31piy