jQuery 消息提示/通知插件

常見消息提醒,相似於Chrome notification,易於使用,用戶體驗贊。javascript

// Simple
$.sticky('hi, every body rock!');

// Advantage
$.sticky({
  icon         : 'img/greet.png',
  title        : 'Greeting',
  body         : 'Hello there, I am jquery.sticky \(^o^)/~.',
  position     : 'top-right',
  useAnimateCss: true,
  onShown      : function(id){
    console.log('shown', id);
  },
  onHidden     : function(id){
    console.log('hidden', id);
  }
});

批量消息隊列管理。java

在線演示jquery

源碼地址git

相關文章
相關標籤/搜索