Giter VIP home page Giter VIP logo

cjh0613 / sweetalert2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sweetalert2/sweetalert2

0.0 1.0 0.0 19.1 MB

A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.

Home Page: https://sweetalert2.github.io

License: MIT License

CSS 0.09% JavaScript 84.41% HTML 0.39% TypeScript 0.08% Shell 0.15% SCSS 14.88%

sweetalert2's Introduction

[= Become the ๐Ÿ† Ultimate Sponsor of SweetAlert2 and place your banner here (100K+ unique visitors per month) =]

SweetAlert2

A beautiful, responsive, customizable, accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.


See SweetAlert2 in action โ†—

Build Status Coverage Status Version jsdelivr Support Donate


๐Ÿ’ฐ Get $100 in free credits with DigitalOcean!


๐Ÿ‘‰ Upgrading from v10.x to v11.x? Read the release notes!
If you're upgrading from v9.x, please upgrade from v9 to v10 first!
If you're upgrading from v8.x, please upgrade from v8 to v9 first!
If you're upgrading from v7.x, please upgrade from v7 to v8 first!
If you're upgrading from v6.x, please upgrade from v6 to v7 first!

๐Ÿ‘‰ Migrating from SweetAlert? SweetAlert 1.x to SweetAlert2 migration guide


Installation

npm install --save sweetalert2

Or grab from jsdelivr CDN :

<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>

Usage

<script src="sweetalert2/dist/sweetalert2.all.min.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')

Or with JS modules:

<link rel="stylesheet" href="sweetalert2/dist/sweetalert2.css">

<script type="module">
  import Swal from 'sweetalert2/src/sweetalert2.js'
</script>

It's possible to import JS and CSS separately, e.g. if you need to customize styles:

import Swal from 'sweetalert2/dist/sweetalert2.js'

import 'sweetalert2/src/sweetalert2.scss'

Please note that TypeScript is well-supported, so you don't have to install a third-party declaration file.

Examples

The most basic message:

Swal.fire('Hello world!')

A message signaling an error:

Swal.fire('Oops...', 'Something went wrong!', 'error')

Handling the result of SweetAlert2 modal:

Swal.fire({
  title: 'Are you sure?',
  text: 'You will not be able to recover this imaginary file!',
  icon: 'warning',
  showCancelButton: true,
  confirmButtonText: 'Yes, delete it!',
  cancelButtonText: 'No, keep it'
}).then((result) => {
  if (result.isConfirmed) {
    Swal.fire(
      '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.fire(
      'Cancelled',
      'Your imaginary file is safe :)',
      'error'
    )
  }
})

Go here to see the docs and more examples โ†—

Browser compatibility

Chrome Firefox Safari Edge
โœ”๏ธ โœ”๏ธ โœ”๏ธ โœ”๏ธ

If you need IE11 and legacy Edge support, please use the previous major version.

Themes (sweetalert2-themes โ†—)

Related projects

Related community projects

Contributing

Maintainability semantic-release

If you would like to contribute enhancements or fixes, please do the following:

  1. Fork the sweetalert2 repository and clone it locally.

  2. Make sure you have npm or yarn installed.

  3. When in the SweetAlert2 directory, run npm install or yarn install to install dependencies.

  4. To begin active development, run npm start or yarn start. This does several things for you:

  1. To run tests, run npm run cypress:open or yarn cypress:open

Big Thanks

Sponsors

For all questions related to sponsorship please contact me via email [email protected]

Become a sponsor FlowCrypt life digital Code Rubik NDCHost Bitvape
Halvin Laina Tiago de Oliveira Stutz SebaEBC

NSFW Sponsors

Sex Toy WoW Mailovedoll Fresh Materials Joy Love Dolls STED My Sex Toy Guide
Best Blowjob Machines STC DoctorClimax

Support and Donations

Has SweetAlert2 helped you create an amazing application? You can show your support via GitHub Sponsors

Alternative ways for donations (PayPal, cryptocurrencies, etc.) are listed here: https://sweetalert2.github.io/#donations

Hall of Donators ๐Ÿ†

sweetalert2's People

Contributors

151dd avatar acupajoe avatar birjj avatar caseywebb avatar connyay avatar depfu[bot] avatar glennvd avatar green-arrow avatar greenkeeper[bot] avatar gverni avatar jdcrensh avatar johanwilfer avatar julianogtz avatar kuzcoo avatar limonte avatar mkoczka avatar nerdmed avatar nixta avatar patrickhlauke avatar rafaelss95 avatar samturrell avatar semantic-release-bot avatar simo9000 avatar sontan avatar spetnik avatar t4t5 avatar tonkpils avatar toverux avatar zenflow avatar zzarcon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.