jQuery Popup Window Plugin with CSS3 Flipping Animation Flip Popup - Download jQuery Popup Window Plugin with CSS3 Flipping Animation - Flip Popup

Download jQuery Popup Window Plugin with CSS3 Flipping Animation – Flip Popup

Posted on

This time I will share jQuery Plugin and tutorial about jQuery Popup Window Plugin with CSS3 Flipping Animation – Flip Popup, hope it will help you in programming stack.

jQuery Popup Window Plugin with CSS3 Flipping Animation Flip Popup - Download jQuery Popup Window Plugin with CSS3 Flipping Animation - Flip Popup
File Size: 84.8 KB
Views Total: 12016
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

Flip Popup is a tiny, simple jQuery plugin used to pop up a modal window with a cool CSS3 flip animation. Fully customizable via CSS and JS options.

How to use it:

1. Load the necessary jQuery javascript library and the jQuery flip popup‘s Javascript and CSS in the document.

1 <link rel="stylesheet" href="flippopup.css">
2 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
3 <script src="jquery.flippopup.js"></script>

2. Create a link to open a popup window.

1 <div class="demo">click to popup</div>

3. Create the content for the popup window.

1 <div id="pop-demo">
2 Your content goes here
3 </div>

4. The Javascript.

01 <script>
02 $( document ).ready(function(){
03 $( "#pop-demo" ).hide();
04  
05 $( ".demo" ).click(function() {
06 $( "#pop-demo" ).flipOrizzontal({
07 color: "#fff",
08 xcolor:"#ff5599",
09 lightboxcolor:"#ff5599",
10 backgroundcolor:"#ff5599",
11 border_radius:"25px",
12 speed:"0.5",
13 shadowcolor:"#ff5599",
14 shadowsize:"0px 0px 25px 5px",
15 font_family:"arial",
16 popupwidth:"600px",
17 popupheight:"400px"
18 });
19  
20 });
21 </script>

5. All the default settings.

01 color: "#fff",
02 xcolor:"#ff5599",
03 lightboxcolor:"#ff5599",
04 backgroundcolor:"#ff5599",
05 border_radius:"25px",
06 speed:"0.5",
07 shadowcolor:"#ff5599",
08 shadowsize:"0px 0px 25px 5px",
09 font_family:"arial",
10 popupwidth:"600px",
11 popupheight:"400px",
12 datatosendtoajax:"",
13 loadurl:"",
14 imageurl:"",
15 iframeurl:"",
16 iframescrolling:"auto"

Change log:

2015-11-08

  • v2.0.1

This awesome jQuery plugin is developed by zerokod. For more Advanced Usages, please check the demo page or visit the official website.

source : jqueryscript.net