Jquery.Messager插件

Jquery.Messager插件

右下角弹出窗口

1.关于页面过长,弹出页面无法在右下角
var topHeight = document.documentElement.scrollTop + document.documentElement.clientHeight – this.layer.height;

top:topHeight +”px” 就可以解决

2. 不随鼠标下移
$(window).scroll( function() {
  var topHeight = document.documentElement.scrollTop + document.documentElement.clientHeight – this.layer.height;
  $(”#message”).css(”top”,topHeight+”px”);
});


就可以解决

DEMO 下载

posted @ 2012-05-29 09:35  牛伯温  阅读(175)  评论(0编辑  收藏  举报