Skip to content

Instantly share code, notes, and snippets.

@IGGY-MODEL
Last active March 14, 2016 18:22
Show Gist options
  • Select an option

  • Save IGGY-MODEL/7e840360890080d2f957 to your computer and use it in GitHub Desktop.

Select an option

Save IGGY-MODEL/7e840360890080d2f957 to your computer and use it in GitHub Desktop.
popup + #overlay
====Jade====
#overlay
...
form#popup
input
input
====Sass====
#overlay
display: none
background-color: #fff
height: 100%
left: 0
opacity: 0.7
position: fixed
top: 0
width: 100%
z-index: 999
======JS=====
$('.callme').click(function() {
$(' #overlay, form#callme').fadeIn('300');
return false;
});
$('form#callme > input[type="submit"], #overlay, .close-btn').click(function() {
$(' #overlay, form#callme').fadeOut('fast');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment