我正在看松树通知(http://pines.sourceforge.net/pnotify/)它看起来不错,但它似乎没有什么实际文件,所以我想知道有没有更多的建立并在那里工作?
就像我不想花时间试图弄清楚如何使用松树然后发现它缺少一些我需要更改为不同插件的功能。
这发生在我身上,因为我正在使用tablesorter 2.0然后我需要过滤但是他们有点糟透了所以我发现数据包有更大的api并且开发得更多。
所以我想知道是否有像datatables(在开发和功能方面)只是为了通知。
修改
所以我看着jgrowl,并且对如何使用主题滚轮感到困惑。
所以我拿了一次示例文件并用我认为是垃圾的所有内容将其剥离。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml" debug="true">
<head>
<title>jGrowl meet Twitter</title>
<link rel="stylesheet" href="../jquery.jgrowl.css" type="text/css"/>
<link type="text/css" href="css/le-frog/jquery-ui-1.7.2.custom.css" rel="Stylesheet" />
<script type="text/javascript">
$(function(){
$('.ui-state-default').hover(
function(){$(this).addClass('ui-state-hover');},
function(){$(this).removeClass('ui-state-hover');}
)
.mousedown(function(){$(this).addClass('ui-state-active');})
.mouseup(function(){$(this).removeClass('ui-state-active');})
.mouseout(function(){$(this).removeClass('ui-state-active');});
});
</script>
<script type="text/javascript" src="jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../jquery.jgrowl.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// This value can be true, false or a function to be used as a callback when the closer is clciked
$.jGrowl.defaults.closer = function() {
console.log("Closing everything!", this);
};
$.jGrowl("Sticky notification with a header",
{
header: 'A Header',
sticky: true,
});
});
</script>
</head>
<body>
<div id="trdevtool_contain" class="ui-widget ui-widget-content ui-corner-all">
<div class="ui-widget-header ui-corner-top">
<h1>jQuery UI ThemeRoller <span>Developer Tool</span></h1>
</div>
</div>
</body>
</html>
我不明白这是为了什么
<script type="text/javascript">
$(function(){
$('.ui-state-default').hover(
function(){$(this).addClass('ui-state-hover');},
function(){$(this).removeClass('ui-state-hover');}
)
.mousedown(function(){$(this).addClass('ui-state-active');})
.mouseup(function(){$(this).removeClass('ui-state-active');})
.mouseout(function(){$(this).removeClass('ui-state-active');});
});
</script>
它似乎与应用主题无关。我把它拿走了,主题仍然适用。如果你看看我的jgrow
$.jGrowl("Sticky notification with a header",
{
header: 'A Header',
sticky: true,
});
我没有提及主题,但它仍然是一些如何使用主题。为什么要采用这个主题?
答案 0 :(得分:17)
我想通过链接到我最喜欢的,toastr来添加我的2cents。
答案 1 :(得分:9)
那里有束,我会查看jQuery插件网站,特别是the plugins classified under the notification category:)
以下是一些:
答案 2 :(得分:1)
我个人使用jGrowl。但是here are a few others。
修改:在回复下面的评论时,这是jGrowl site。它做得更好?它易于使用,效果很好。其他人可以达到同样的目的,但我的经验与Funka的相同:尝试过,它有效,很容易,完成。
答案 3 :(得分:1)
我可能会迟到这个答案,但如果有人来这里寻找一个简单,轻便,简约且不显眼的通知插件,我已经制作了一个开源jQuery通知插件,可以与网络应用程序无缝集成,称为jNotifyOSD。您可以在该链接上看到演示。我试图保持API干净,简单易用。这是一个例子:
$.notify_osd.create({
'text' : 'Hi!', // notification message
'icon' : 'images/icon.png', // icon path, 48x48
'sticky' : false, // if true, timeout is ignored
'timeout' : 6, // disappears after 6 seconds
'dismissable' : true // can be dismissed manually
});
您还可以为所有未来通知设置全局默认值(可以基于每个通知进行覆盖):
$.notify_osd.setup({
'icon' : 'images/default.png',
'sticky' : false,
'timeout' : 8
});
它包含一个非常漂亮的默认主题,悬停时具有透明度(意味着当鼠标指针接近时通知变得越来越透亮),但只需输入一个CSS文件来指定某些样式,就可以非常轻松地更改主题定义的类。我正在努力添加更多功能,因此您应该关注the GitHub repository。
更新[2012年12月13日] :
已经有一段时间了,但我终于使用队列系统实现了对多个可见通知的支持。例如:
$.notify_osd.setup({
// ... config ...
'visible_max' : 5 // max 5 notifications visible simultaneously
'spacing' : 30 // spacing between consecutive notifications
});
您可以看到演示here。我认为该插件现在足够灵活,可以处理各种各样的用例。