Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. /*----------------------------------------
  2. MODAL
  3. ----------------------------------------*/
  4.  
  5. // JS:
  6.  
  7. $(document).ready(function() {
  8. $('.open-window').click(function() { // <- trigger (.open-window)
  9. $('.modal-window').fadeIn(function() { // <- overlay fadeIn
  10. $('.window-container').addClass('visible'); // <- modal window show
  11. $('body').css('overflow', 'hidden'); // <- can't scroll while modals are showing up (optional).
  12. });
  13. });
  14.  
  15. $('.btn-close, .modal-window').click(function() { // <- close triggers
  16. $('.modal-window').fadeOut().end().find('.window-container').removeClass('visible'); // <- overlay fadeOut, modal hide
  17. $('body').css('overflow', 'visible'); // <- can scroll our page again
  18. });
  19. $('.window-container').click(function(event) {
  20. event.stopPropagation()
  21. });
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement