我正在使用AngularJS-Toaster在我的应用中弹出通知。对于我正在使用bootstrap的前端。
使用类'容器'我有一个1200px的网格。在里面我有一个带弹出通知的div。
我想将弹出通知的宽度调整到与包含此烤面包机的容器相同的宽度。我看到烤面包机有一个参数'position-class'来改变位置甚至宽度popup,例如'toast-top-full-width',但是使用它我得到一个全屏通知,它不会调整到包含它的容器。我想这可以用Css完成,但是如何?你能帮我吗?
这是我的HTML代码:
<body data-ng-controller="AppController">
<div id="container" class="container">
<toaster-container toaster-options="{'position-class': 'toast-container','time-out': 3000, 'close-button':true}"></toaster-container>
<div id="header" data-ng-include="'partials/header/header.html'" ></div>
<div data-ng-view></div>
<div id="footer" data-ng-include="'partials/footer/footer.html'"></div>
<div id="loader" class="loading overlay" data-ng-if="loader.loading">
<p>We are loading the products. Please wait...</p>
<img alt="" src="images/ajax-loader.gif">
</div>
</div>
<div id="loginPanel" data-ng-include="'partials/content/panels/login.html'"></div>
非常感谢您提前。
答案 0 :(得分:6)
您可以将烤面包机的class
更改为toast-top-full-width
<toaster-container toaster-options="{'time-out': 3000, 'close-button':true, 'position-class':'toast-top-full-width'}"></toaster-container>
或者您可以创建自定义css
规则并将其应用到烤面包机即
<toaster-container toaster-options="{'time-out': 3000, 'close-button':true, 'position-class':'my-toast-class'}"></toaster-container>
答案 1 :(得分:2)
您可以使用 CSS 将宽度设置为 1200 像素或 100% 或任何其他长度。
#toast-container > .toast {
width: 1200px; /* width: 100% */
}
已经为 margin-left 和 margin-right 属性定义了值 'auto'。因此,如果有人想要在两侧留出一点间距,我会使用:
#toast-container > .toast {
max-width: 1200px;
width: 90%;
}
答案 2 :(得分:0)
我们可以在javascript文件中设置以下烤面包机选项:-
toastr.options = {
"positionClass": "toast-bottom-full-width",
...
};