我正在使用tidesk为我的webapp制作桌面通知。我能够使用通知API并能够生成通知,但是有任何方式来设置这些通知的样式。我想根据我的喜好更改通知css来设置它的样式。有没有办法做到这一点。
谢谢!
我真的没有太多的代码,它们都是非常基本的东西,但是,它仍然存在。
var window1 = Ti.UI.currentWindow;
window1.hide();
window1.setTitle('Application Name');
function showNotify(title, message) {
var notification = Ti.Notification.createNotification({
'title': title || 'No Title',
'message': message || 'No Message',
'timeout': 15
});
notification.setIcon("logo_white_33.png");
notification.show();
}
function addTrayIcon(){
tray = Ti.UI.addTray("recycle_bin.png", function(e){
if (!window1.isVisible())
{
window1.show();
}
});
}
showNotify("New Reminder", "Reminder for <user> at <time>");
addTrayIcon();