- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add a fading effect when closing an alert box in Bootstrap
Use the .fade class in Bootstrap to add a fading effect when the alert is closed:
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <h2>Eclipse Refactoring</h2> <div class = "alert alert-danger alert-dismissible fade in"> <a href = "#" class = "close" data-dismiss="alert" aria-label = "close">×</a> To refactor code in Eclipse, try the below given steps in the video (You can also close this alert) </div> </div> <div class = "container"> <div class = "embed-responsive embed-responsive-16by9"> <iframe class = "embed-responsive-item" src = "https://www.youtube.com/embed/YFVV6RAUnNg "></iframe> </div> </div> </body> </html>
- Related Articles
- Create an alert message box with Bootstrap
- Bootstrap dropdown closing when clicked in HTML
- Create a yellow color alert box that indicates caution in Bootstrap
- How to add check box list in alert dialog?
- Create a green color alert box that indicates a positive action in Bootstrap
- Create a red color alert box that indicates a dangerous action in Bootstrap
- What is an alert box in JavaScript?
- Create a light-blue alert box that indicates some information with Bootstrap
- How to create fading effect with CSS
- Image Transition with Fading Effect using JavaScript
- Add a hover effect inside the Bootstrap 4 card
- How to call JavaScript function in an alert box?
- Bootstrap alert class
- Bootstrap alert-dismissable class
- Bootstrap alert-success class

Advertisements