我有一个服务代码,就像;
<script>
var pop = function (type, message, callbackfn,duration) {
toaster.pop({
type: type,
body: message,
showCloseButton: true,
timeout: duration,
positionClass: "toast-top-full-width",
onHideCallback: callbackfn,
hideDuration : 1000,
hideMethod: 'slideUp'
});
</script>但我的烤面包机没有褪色也没有褪色。我的AngularJS烤面包版是: 0.4.15我应该在pop方法中添加哪个选项来获得fadeOut特性?
发布于 2016-03-17 11:36:27
我不熟悉角端口,但是原始的可以用这里播放。这意味着你所关心的财产是:
1. Is your toast showing at all?
2. Have you confirmed that your type, message, and duration variables are populated at the point of calling?
https://stackoverflow.com/questions/36058971
复制相似问题