Forked from Captain Anonymous's Pen BCcvn.
Created
August 15, 2014 10:01
-
-
Save anonymous/df6eb3d28dbe33860ba9 to your computer and use it in GitHub Desktop.
A Pen by Ingo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" class="big-link" data-reveal-ajax="true" data-reveal-id="myModal"> | |
Fade and Pop | |
</a> | |
<div id="myModal" class="reveal-modal"> | |
<h1>Reveal Modal Goodness</h1> | |
<p>This is a default modal in all its glory, but any of the styles here can easily be changed in the CSS.</p> | |
<a class="close-reveal-modal x">×</a> | |
<a href="#" class="close-reveal-modal">Link to Close</a> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery Reveal Plugin 1.0 | |
* www.ZURB.com | |
* Copyright 2010, ZURB | |
* Free to use under the MIT license. | |
* http://www.opensource.org/licenses/mit-license.php | |
*/ | |
(function(e){e("a[data-reveal-id]").live("click",function(t){t.preventDefault();var n=e(this).attr("data-reveal-id");e("#"+n).reveal(e(this).data())});e.fn.reveal=function(t){var n={animation:"fadeAndPop",animationspeed:300,closeonbackgroundclick:true,dismissmodalclass:"close-reveal-modal"};var t=e.extend({},n,t);return this.each(function(){function a(){s=false}function f(){s=true}var n=e(this),r=parseInt(n.css("top")),i=n.height()+r,s=false,o=e(".reveal-modal-bg");if(o.length==0){o=e('<div class="reveal-modal-bg" />').insertAfter(n)}n.bind("reveal:open",function(){o.unbind("click.modalEvent");e("."+t.dismissmodalclass).unbind("click.modalEvent");if(!s){f();if(t.animation=="fadeAndPop"){n.css({top:e(document).scrollTop()-i,opacity:0,visibility:"visible"});o.fadeIn(t.animationspeed/2);n.delay(t.animationspeed/2).animate({top:e(document).scrollTop()+r+"px",opacity:1},t.animationspeed,a())}if(t.animation=="fade"){n.css({opacity:0,visibility:"visible",top:e(document).scrollTop()+r});o.fadeIn(t.animationspeed/2);n.delay(t.animationspeed/2).animate({opacity:1},t.animationspeed,a())}if(t.animation=="none"){n.css({visibility:"visible",top:e(document).scrollTop()+r});o.css({display:"block"});a()}}n.unbind("reveal:open")});n.bind("reveal:close",function(){if(!s){f();if(t.animation=="fadeAndPop"){o.delay(t.animationspeed).fadeOut(t.animationspeed);n.animate({top:e(document).scrollTop()-i+"px",opacity:0},t.animationspeed/2,function(){n.css({top:r,opacity:1,visibility:"hidden"});a()})}if(t.animation=="fade"){o.delay(t.animationspeed).fadeOut(t.animationspeed);n.animate({opacity:0},t.animationspeed,function(){n.css({opacity:1,visibility:"hidden",top:r});a()})}if(t.animation=="none"){n.css({visibility:"hidden",top:r});o.css({display:"none"})}}n.unbind("reveal:close")});n.trigger("reveal:open");var u=e("."+t.dismissmodalclass).bind("click.modalEvent",function(){n.trigger("reveal:close")});if(t.closeonbackgroundclick){o.css({cursor:"pointer"});o.bind("click.modalEvent",function(){n.trigger("reveal:close")})}e("body").keyup(function(e){if(e.which===27){n.trigger("reveal:close")}})})}})(jQuery) | |
$(document).ready(function () { | |
setTimeout(function () { | |
jQuery('.big-link').trigger('click'); | |
}, 1500); | |
// setTimeout( "jQuery('.big-link').trigger('click');", 1500 ); | |
function loadModal() { | |
jQuery('#myModal').reveal({ | |
animation: 'fadeAndPop', //fade, fadeAndPop, none | |
animationspeed: 300, //how fast animtions are | |
closeonbackgroundclick: true, //if you click background will modal close? | |
dismissmodalclass: 'close-reveal-modal' //the class of a button or element that will close an open modal | |
}); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -------------------------------------------------- | |
Reveal Modals | |
-------------------------------------------------- */ | |
.reveal-modal-bg { | |
position: fixed; | |
height: 100%; | |
width: 100%; | |
background: #000; | |
background: rgba(0,0,0,.8); | |
z-index: 100; | |
display: none; | |
top: 0; | |
left: 0; | |
} | |
.reveal-modal { | |
visibility: hidden; | |
top: 100px; | |
left: 50%; | |
margin-left: -300px; | |
width: 520px; | |
background: #eee url(modal-gloss.png) no-repeat -200px -80px; | |
position: absolute; | |
z-index: 101; | |
padding: 30px 40px 34px; | |
-moz-border-radius: 5px; | |
-webkit-border-radius: 5px; | |
border-radius: 5px; | |
-moz-box-shadow: 0 0 10px rgba(0,0,0,.4); | |
-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4); | |
-box-shadow: 0 0 10px rgba(0,0,0,.4); | |
} | |
.reveal-modal.small { width: 200px; margin-left: -140px;} | |
.reveal-modal.medium { width: 400px; margin-left: -240px;} | |
.reveal-modal.large { width: 600px; margin-left: -340px;} | |
.reveal-modal.xlarge { width: 800px; margin-left: -440px;} | |
.reveal-modal .close-reveal-modal { | |
cursor: pointer; | |
} | |
.reveal-modal .close-reveal-modal.x { | |
font-size: 34px; | |
line-height: 1; | |
position: absolute; | |
top: 3px; | |
right: 13px; | |
color: #aaa; | |
text-shadow: 0 -1px 1px rbga(0,0,0,.6); | |
font-weight: normal; | |
} | |
body { font-family: "HelveticaNeue","Helvetica-Neue", "Helvetica", "Arial", sans-serif; } | |
.big-link { display:none; visibility: hidden; text-indent: -999em; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment