Guest User

Untitled

a guest
Apr 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <script>
  2. jQuery(function($) {
  3. $('.trigger-btn').click(function() {
  4. $('.modal-wrapper').css('display','block');
  5. $(window).css('background','rgba(0,0,0,0.34)')
  6. $('.modal-wrapper').addClass('dark-background');
  7. });
  8.  
  9. $('#close-btn').click(function() {
  10. $('.modal-wrapper').css('display','none');
  11. $('.modal-wrapper').removeClass('dark-background');
  12. });
  13.  
  14. });
  15. </script>
  16.  
  17. <style>
  18. .dark-background{
  19. position: fixed;
  20. width: 100%;
  21. height: 100%;
  22. top: 0;
  23. left: 0;
  24. z-index: 9999;
  25. }
  26. </style>
Add Comment
Please, Sign In to add comment