twitter-bootstrap
Alarm
Szukaj…
Uwagi
Zobacz więcej: http://getbootstrap.com/components/#alerts
Typy alertów
W przeciwieństwie do niektórych innych składników Bootstrap, takich jak Przyciski , Alerty nie są dostarczane z default
lub primary
stylizacją, ponieważ mają za zadanie ostrzegać użytkownika w określony sposób.
<div class="alert alert-success" role="alert">
Some action was completed successfully
</div>
<div class="alert alert-info" role="alert">
Here is some information. Just FYI.
</div>
<div class="alert alert-warning" role="alert">
Careful! You're about to do something dangerous.
</div>
<div class="alert alert-danger" role="alert">
An error (or something dangerous) happened!
</div>
Alert podstawowy przykład
<div class="container">
<h2>Alerts</h2>
<div class="alert alert-success">
<strong>Success!</strong>
</div>
<div class="alert alert-info">
<strong>Info!</strong>
</div>
<div class="alert alert-warning">
<strong>Warning!</strong> All foelds are required
</div>
<div class="alert alert-danger">
The username is required and can't be empty
</div>
</div>
Animowane alerty
.fade
i .in
dodają efekt zanikania podczas zamykania komunikatu ostrzegawczego.
<div class="alert alert-success fade in">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<strong>Success!</strong> This is a good example!
</div>
Niedopuszczalne alerty
Aby dać funkcję zamykania alertów, wystarczy dodać data-dismiss="alert"
do naszego przycisku zamykania.
<div class="alert alert-info alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
Sphinx of black quartz, judge my vow
</div>
.alert-dismissible
i .close
są opcjonalne, przydatne tylko do stylizacji.
Kolor linku w alertach
Aby szybko zapewnić odpowiedni kolor dla linków wewnątrz dowolnego alertu, możemy użyć klasy narzędziowej .alert-link
.
<div class="alert alert-success">
You have won! Click <a href="#" class="alert-link">here</a> to claim your prize ...
</div>
<div class="alert alert-info">
You might want to check <a href="#" class="alert-link">this</a> instead.
</div>
<div class="alert alert-warning">
You are running out of coins. Buy more <a href="#" class="alert-link">here</a>.
</div>
<div class="alert alert-danger">
Something went wrong. You can try <a href="#" class="alert-link">again</a> or ...
</div>
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow