代码之家  ›  专栏  ›  技术社区  ›  Chris

通知警报类似于stackoverflow的功能

  •  7
  • Chris  · 技术社区  · 14 年前

    stackoverflow如何创建slidedown效果来提醒用户更改?

    4 回复  |  直到 10 年前
        1
  •  10
  •   Andy E    14 年前

    jQuery framework ,它有一种使用简单动画显示隐藏元素的方法,例如:

    $('#notification-bar').show('slow');
    

    http://api.jquery.com/show/ (查看演示)。

    它是固定在页面顶部使用 position:fixed 在CSS中:

    #notification-bar { 
       position:fixed;
       top: 0px; 
       left: 0px;
       width: 100%;
    }
    
        2
  •  1
  •   Community Romance    7 年前

    我认为他们使用定时事件: jQuery Timed Event

    向SO服务器发送AJAX调用: http://api.jquery.com/jQuery.ajax/

    然后在div中使用Andy E提到的效果显示它

        3
  •  1
  •   Manaf Abu.Rous    14 年前

    ASP.NET MVC 2.0 Starter Site

    更新:

    下面是登录操作方法的一个示例:

    var registered =_authService.RegisterUser(login, password, confirm, "", "", "");
    if (registered) {
        this.FlashInfo("Thank you for signing up!");                        
    
        return AuthAndRedirect(login, login);
    } else {
        this.FlashWarning("There was a problem with your registration");
    }
    

    下面是它的样子:

    alt text

    我强烈建议你看看他们的代码。

        4
  •  0
  •   d2burke    14 年前

    似乎可以用AJAX和jQuery来完成。顶部100%宽度的一个div,在接收到某些信息时向下滑动并填充内容。你更感兴趣的是效果…还是后端功能?