sweetalert2 / sweetalert2
- среда, 14 февраля 2018 г. в 03:16:14
A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.
A beautiful, responsive, customizable, accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.
npm install --save sweetalert2Or:
bower install --save sweetalert2Or download from CDN: unpkg.com/sweetalert2 | jsdelivr.net/npm/sweetalert2
<script src="sweetalert2/dist/sweetalert2.all.min.js"></script>
<!-- Include a polyfill for ES6 Promises (optional) for IE11, UC Browser and Android browser support -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.js"></script>You can also include the stylesheet separately if desired:
<script src="sweetalert2/dist/sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2/dist/sweetalert2.min.css">Or:
// ES6 Modules or TypeScript
import swal from 'sweetalert2'
// CommonJS
const swal = require('sweetalert2')Please note that TypeScript is supported, so you don't have to install a third-party declaration file.
The most basic message:
swal('Hello world!')A message signaling an error:
swal('Oops...', 'Something went wrong!', 'error')Handling the result of SweetAlert2 modal:
swal({
title: 'Are you sure?',
text: 'You will not be able to recover this imaginary file!',
type: 'warning',
showCancelButton: true,
confirmButtonText: 'Yes, delete it!',
cancelButtonText: 'No, keep it'
}).then((result) => {
if (result.value) {
swal(
'Deleted!',
'Your imaginary file has been deleted.',
'success'
)
// For more information about handling dismissals please visit
// https://sweetalert2.github.io/#handling-dismissals
} else if (result.dismiss === swal.DismissReason.cancel) {
swal(
'Cancelled',
'Your imaginary file is safe :)',
'error'
)
}
})| IE11* | Edge | Chrome | Firefox | Safari | Opera | Android Browser* | UC Browser* |
|---|---|---|---|---|---|---|---|
* ES6 Promise polyfill should be included, see usage example.
Note that SweetAlert2 does not and will not provide support or functionality of any kind on IE10 and lower.
| @toverux | @birjolaxew | @samturrell | @acupajoe | @zenflow | @patrickhlauke |
If you would like to contribute enhancements or fixes, please do the following:
Fork the sweetalert2 repository and clone it locally.
When in the SweetAlert2 directory, run npm install or yarn install to install dependencies.
Start gulp watcher gulp watch to automatically serve, build, and minify the SCSS and JS-files.
Ensure that you didn't break any of tests:
npm testHas SweetAlert2 helped you create an amazing application? You can show your support by making a donation in one of two ways: