我正在查看 pines notify( http://pines.sourceforge.net/pnotify/ ),它看起来不错,但似乎没有什么实际文档,所以我想知道那里有什么更确定和工作的吗?
就像我不想花时间试图弄清楚如何使用 pines,然后发现它缺少几个月后需要的一些功能,我需要更改为不同的插件。
这发生在我使用 tablesorter 2.0 时,我正在使用它,然后我需要过滤,但他们的有点糟糕,所以我发现数据表有这么大的 api 并开发了更多。
所以我想知道是否有类似数据表(在开发和功能方面)的东西只是用于通知。
编辑
所以我在看 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,
});
我没有提到主题,但它仍然有些如何使用主题。为什么要取主题?