Twitter通知ajax吧,他们是怎么做到的?

时间:2009-10-16 19:58:43

标签: asp.net jquery ajax twitter

我正试图让那个很酷的,一个推特的ajax滑动条(它有点透明,白色)。

我试着查看html / css,但似乎他们动态地注入了各种DOM层。

有人知道他们是如何实施的吗?

我真的想学习如何做到这一点。

1 个答案:

答案 0 :(得分:16)

在firebug或document.ready()

中运行此代码
$("<div id='notification'>Notification text here</div>").css({
position:"fixed",
top:"0px",
left:"0px",
height:"20px",
width:"100%",
backgroundColor:"#cccccc",
color:"blue",
padding:"5px",
fontWeight:"bold",
textAlign:"center",
opacity:"0.5"
})
.appendTo("body");

你应该有一个即时通知栏......

如果您熟悉jQuery(我假设您是这样,因为问题用jquery标记),您可以调整CSS和HTML值以满足您的需求......

要让它向下滑动,你可以这样做:

$("<div id='notification'>Notification text here</div>").css({
position:"fixed",
top:"0px",
left:"0px",
height:"20px",
width:"100%",
backgroundColor:"#cccccc",
color:"blue",
padding:"5px",
fontWeight:"bold",
textAlign:"center",
display:"none", //<-- notice this new value
opacity:"0.5"
})
.appendTo("body");
$("#notification").slideDown("slow"); //<-- this is the animation code

免责声明:只是我掀起的一件快事,如果它在IE中不起作用也不会感到惊讶