我修改了https://github.com/sachinchoolur/angular-flash以使用此http://semantic-ui.com/collections/message.html
但是消息显得过快,我无法关闭它们。我想做的是当我从我的控制器创建一条消息时
Flash.create('positive', header, message, 0, {class: 'positive', id: 'login-success'}, true);
我想在它看起来像fadeIn之前执行jquery,我需要能够执行这个脚本:
$('.message .close')
.on('click', function() {
$(this)
.closest('.message')
.transition('fade')
;
});