使用 ui-bootstrap 显示在右上角的警报,使用 Angularjs 进行引导

Posted

技术标签:

【中文标题】使用 ui-bootstrap 显示在右上角的警报,使用 Angularjs 进行引导【英文标题】:Alert to appear on right top corner using ui-bootstrap, bootstrap with Angularjs 【发布时间】:2014-12-01 10:20:38 【问题描述】:

我希望我的提醒显示在右上角。我将如何使用引导程序来做到这一点?目前我的 html 看起来像这样。

  <div class="notification">
        <alert ng-repeat="alert in alerts" type="alert.type"  close="alert.close()">alert.msg</alert>
      </div>

我将 ui-bootstrap 用于 angular 和 twitter。

【问题讨论】:

developer.mozilla.org/en-US/docs/Web/CSS/position 感谢链接,学习css 【参考方案1】:

对于像我这样的人:)

 .notification
      position: fixed;
      top: 10em;
      right: 10em;
    

【讨论】:

以上是关于使用 ui-bootstrap 显示在右上角的警报,使用 Angularjs 进行引导的主要内容,如果未能解决你的问题,请参考以下文章

如何在禁用按钮上显示 ui-bootstrap 工具提示?

AngularJs的UI组件ui-Bootstrap分享——Datepicker Popup

angularjs之ui-bootstrap的Datepicker Popup不使用JS实现双日期选择控件

UI-Bootstrap 仅将模态背景应用于元素

如何为 ui-bootstrap 日期选择器创建 angularJs 包装器指令?

我可以从我自己的应用程序创建提醒/警报类型的通知吗?