Guest User

Untitled

a guest
Dec 15th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <p>This is the content of the page</p>
  2. <div id="modal" class="modal">
  3. <div class="warning">
  4. <div>
  5. <span class="exit">&times;</span>
  6. <a href="https://www.google.com">Google</a>
  7. </div>
  8. <a href="https://www.google.com/random">Some SharePoint URL</a>
  9. </div>
  10. </div>
  11.  
  12. .modal {
  13. display: block;
  14. position: fixed;
  15. left: 0;
  16. top: 0;
  17. padding-top: 20px;
  18. z-index: 1;
  19. width: 100%;
  20. height: 100%;
  21. background-color: grey;
  22. background-color: rgba(0, 0, 0, 0.5);
  23. }
  24.  
  25. .warning {
  26. background-color: #fefefe;
  27. margin: auto;
  28. padding: 20px;
  29. border: 1px solid #888;
  30. width: 80%;
  31. }
  32.  
  33. .exit {
  34. color: #aaaaaa;
  35. float: right;
  36. font-size: 28px;
  37. font-weight: bold;
  38. cursor: pointer;
  39. }
  40.  
  41. var modal = document.getElementById('modal');
  42. var span = document.getElementsByClassName("exit")[0];
  43.  
  44. span.onclick = function() {
  45. modal.style.display = "none";
  46. }
Add Comment
Please, Sign In to add comment