at path:
ROOT
/
sistema
/
vendors
/
popper.js
/
demo.html
run:
R
W
Run
dist
DIR
2020-11-18 02:19:52
R
W
Run
docs
DIR
2020-11-18 02:19:54
R
W
Run
packages
DIR
2020-11-18 02:19:56
R
W
Run
.bower.json
782 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
CHANGELOG.md
165 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
CODE_OF_CONDUCT.md
3.15 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
CONTRIBUTING.md
3.2 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
LICENSE.md
1.1 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
MENTIONS.md
2.73 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
README.md
12.74 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
bower.json
493 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
demo.html
2.05 KB
2020-03-31 16:17:38
R
W
Run
Delete
Rename
lerna.json
178 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
package.json
1.23 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
popperjs.png
48.16 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
yarn.lock
236.41 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
demo.html
Save
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script> </head> <body> <div class="container"> <h3 class="text-info">Closing alerts automatically</h3> <div class="alert alert-primary fade show" role="alert"> For creating the primary alert (bluish) use the alert-primary! </div> <div class="alert alert-info" role="alert"> For creating the info alert (light-blue) use the alert-info! </div> <div class="alert alert-light fade show" role="alert"> For creating the light alert use the alert-light! </div> <div class="alert alert-dark" role="alert"> For creating the dark alert (blackish) use the alert-dark! </div> <div class="alert alert-success fade show" role="alert"> For creating the success alert (green) use the alert-success! </div> <div class="alert alert-secondary" role="alert"> For creating the secondary alert (grayish) use the alert-secondary! </div> <div class="alert alert-danger fade show" role="alert"> For creating the danger alert (red) use the alert-danger! </div> <div class="alert alert-warning" role="alert"> For creating the warning alert (orange) use the alert-warning! </div> </div> <script> $(document).ready(function() { setTimeout(function() { $(".alert").alert('close'); }, 3000); }); </script> </body> </html>