Advertisement
ruesha

popup (pro standard)

Jul 12th, 2024
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. <head>
  2. <script src="https://web.archive.org/web/20220429062709js_/https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  3. <script>
  4. $(document).ready(function(){
  5. $('.n01,.fade1').click(function() {
  6. $('#pop1').fadeToggle();
  7. });
  8. });
  9. </script>
  10. <script>
  11. $(document).ready(function(){
  12. $('.n02,.fade2').click(function() {
  13. $('#pop2').fadeToggle();
  14. });
  15. });
  16. </script>
  17. <script>
  18. $(document).ready(function(){
  19. $('.n03,.fade3').click(function() {
  20. $('#pop3').fadeToggle();
  21. });
  22. });
  23. </script>
  24.  
  25. <style>
  26.  
  27. #pop1 {
  28. width:100%;
  29. height:100%;
  30. top:0;
  31. left:0;
  32. position:fixed;
  33. z-index:999;
  34. background:rgba(255,255,255,.5); /* background of popup. adjust the .9 for the opacity of the background (1 will be solid white, .5 will be semi transparent, etc.) */
  35. display:none;
  36. }
  37.  
  38. .fade1 {
  39. top:0;
  40. left:0;
  41. position:fixed;
  42. z-index:1000;
  43. width:100%;
  44. height:100%;
  45. }
  46.  
  47. .popup1 {
  48. top:37%;
  49. left:50%;
  50. transform:translate(-50%,-50%);
  51. position:fixed;
  52. background:#fff; /* background of popup box */
  53. padding:12px; /* padding of popup box */
  54. z-index:10000;
  55. width:300px; /* width of popup */
  56. border:1px solid #e7defc; /* popup border */
  57. border-radius: 6px;
  58. font-size: 12px;
  59. text-align: left;
  60. line-height: 1.25em;
  61. }
  62.  
  63. @media (max-width: 1000px) {
  64. .popup1 {
  65. top:41%;
  66. }
  67.  
  68. </style>
  69.  
  70. <body>
  71. <div id="pop1">
  72. <div class="fade1"></div>
  73. <div class="popup1">
  74. Popup text goes here! Bold, italics, links, et cetera. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
  75. </div>
  76.  
  77. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement