jQuery消息提醒插件 jQuery Notty
- 授权协议: GPLv3
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://www.userdot.net/files/jquery/jquery.notty/demo/
软件介绍
jQuery Notty 是一个 jQuery 的消息提醒插件。该插件将在屏幕右上角显示如下提示信息
示例代码:
<script type="text/javascript">
$(document).ready(function(){
$('#sample1').click({
$.notty({
title : 'Title',
content : 'This is a notification'
});
});
});
</script>
