All Projects → lichin-lin → Juliealert

lichin-lin / Juliealert

Licence: MIT license
better alert style.

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

JulieAlert

JulieAlert let you display Javascript alert function with beautiful custom style.
All you need is julie😁😁😁.
JulieAlert.gif

Setup

download the package and reference the JavaScript and CSS files manually:

  <script src="assets/juliealert.min.js"></script>
  <link href="assets/juliealert.min.css" rel="stylesheet">

##Example

using jquery to control julie function:

1.Basic style:

$('button').click(function(){
  Julie({
    title: "Julie!",
    text: "Nice to meet you!",
    confirmText:"got it",
    errorText:"",
    Pop:false,
  });
});


2.With different animation style:

$('button').click(function(){
  Julie({
    title: "Pop!",
    text: "animation feature,Pop-Style",
    confirmText: "Know!",
    errorText:"",
    Pop: true
  });
});


3.Even <a> tag in button:

$("button").click(function(){
  Julie({
    title: "Cool!Right?",
    text: "click the button below!",
    errorText: JulieUrl("really?","https://github.com/lichin-lin/Juliealert"),
    Pop:false
  });
});


4.Customized your input in HTML style:

$("button").click(function(){
  Julie({
    title: "Wait!there's more",
    text: "<h1>last demo style!<br>IT IS FANCY<br>HTML element<h1>",
    confirmText: "bro!",
    errorText:"I will miss you!!",
    Pop:false
  });
});

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].