Create an Image Modal using jQuery

Step 1 : Add jQuery Library

Add the jQuery in either on the header tag or at the botton of your body tag.
  1. https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
This is the dependency to use jQuery and it is in CDN means you need internet connection for it to work.

Step 2 : Creating our Image and Modal

  1. <img id="sampleImg" src="gardens.jpg" alt="An Example of a Beautiful Garden" width="300" height="200">
  2.  
  3. <!-- Sample Modal -->
  4. <div id="sampleModal" class="modal">
  5.   <span class="close" id="closeModal">&times;</span>
  6.   <img class="modal-content" id="modalImage">
  7.   <div id="desc"></div>
  8. </div>
In here we have set our smaller image that will serve as a link to open our image modal.

Add CSS

Add the following css.
  1. #sampleImg {
  2.         cursor: pointer;
  3.         transition: 0.3s;
  4. }
  5.  
  6. #sampleImg:hover {opacity: 0.7;}
  7.  
  8. .modal {
  9.         display: none;
  10.         position: fixed;
  11.         z-index: 1;
  12.         padding-top: 100px;
  13.         left: 0;
  14.         top: 0;
  15.         width: 100%;
  16.         height: 100%;
  17.         overflow: auto;
  18.         background-color: rgb(0,0,0);
  19.         background-color: rgba(0,0,0,0.9);
  20. }
  21.  
  22. .modal-content {
  23.         margin: auto;
  24.         display: block;
  25.         width: 80%;
  26.         max-width: 700px;
  27. }
  28.  
  29. #desc {
  30.         margin: auto;
  31.         display: block;
  32.         width: 80%;
  33.         max-width: 700px;
  34.         text-align: center;
  35.         color: #ccc;
  36.         padding: 10px 0;
  37.         height: 150px;
  38. }
  39.  
  40. .modal-content, #desc {    
  41.         -webkit-animation-name: zoom;
  42.         -webkit-animation-duration: 0.6s;
  43.         animation-name: zoom;
  44.         animation-duration: 0.6s;
  45. }
  46.  
  47. @-webkit-keyframes zoom {
  48.         from {-webkit-transform:scale(0)}
  49.         to {-webkit-transform:scale(1)}
  50. }
  51.  
  52. @keyframes zoom {
  53.         from {transform:scale(0)}
  54.         to {transform:scale(1)}
  55. }
  56.  
  57. .close {
  58.         position: absolute;
  59.         top: 15px;
  60.         right: 35px;
  61.         color: #f1f1f1;
  62.         font-size: 40px;
  63.         font-weight: bold;
  64.         transition: 0.3s;
  65. }
  66.  
  67. .close:hover,
  68. .close:focus {
  69.         color: #bbb;
  70.         text-decoration: none;
  71.         cursor: pointer;
  72. }
  73.  
  74. @media only screen and (max-width: 700px){
  75.         .modal-content {
  76.         width: 100%;
  77. }
  78. }
In the CSS we initially define the modal display as none and if the user clicks the smaller image, it will change its display.

Step 3 : Add jQuery Script

Lastly, we add our jQuery script.
  1. $(document).ready(function(){
  2.         $('#sampleImg').click(function(){
  3.                 var src = $(this).attr('src');
  4.                 var alt = $(this).attr('alt');
  5.  
  6.                 $('#sampleModal').css('display', 'block');
  7.                 $('#modalImage').attr('src', src);
  8.                 $('#desc').html(alt);
  9.         });
  10.  
  11.         $('#closeModal').click(function(){
  12.                 $('#sampleModal').css('display', 'none');
  13.         });
  14. });
This is our jQuery script to trigger our Image modal.

Ful HTML

  1. <!DOCTYPE html>
  2.         <meta charset="utf-8">
  3.         <title>Create an Image Modal using jQuery</title>
  4.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  5.         <style type="text/css">
  6.                 #sampleImg {
  7.                     cursor: pointer;
  8.                     transition: 0.3s;
  9.                 }
  10.  
  11.                 #sampleImg:hover {opacity: 0.7;}
  12.  
  13.                 .modal {
  14.                     display: none;
  15.                     position: fixed;
  16.                     z-index: 1;
  17.                     padding-top: 100px;
  18.                     left: 0;
  19.                     top: 0;
  20.                     width: 100%;
  21.                     height: 100%;
  22.                     overflow: auto;
  23.                     background-color: rgb(0,0,0);
  24.                     background-color: rgba(0,0,0,0.9);
  25.                 }
  26.  
  27.                 .modal-content {
  28.                     margin: auto;
  29.                     display: block;
  30.                     width: 80%;
  31.                     max-width: 700px;
  32.                 }
  33.  
  34.                 #desc {
  35.                     margin: auto;
  36.                     display: block;
  37.                     width: 80%;
  38.                     max-width: 700px;
  39.                     text-align: center;
  40.                     color: #ccc;
  41.                     padding: 10px 0;
  42.                     height: 150px;
  43.                 }
  44.  
  45.                 .modal-content, #desc {    
  46.                     -webkit-animation-name: zoom;
  47.                     -webkit-animation-duration: 0.6s;
  48.                     animation-name: zoom;
  49.                     animation-duration: 0.6s;
  50.                 }
  51.  
  52.                 @-webkit-keyframes zoom {
  53.                     from {-webkit-transform:scale(0)}
  54.                     to {-webkit-transform:scale(1)}
  55.                 }
  56.  
  57.                 @keyframes zoom {
  58.                     from {transform:scale(0)}
  59.                     to {transform:scale(1)}
  60.                 }
  61.  
  62.                 .close {
  63.                     position: absolute;
  64.                     top: 15px;
  65.                     right: 35px;
  66.                     color: #f1f1f1;
  67.                     font-size: 40px;
  68.                     font-weight: bold;
  69.                     transition: 0.3s;
  70.                 }
  71.  
  72.                 .close:hover,
  73.                 .close:focus {
  74.                     color: #bbb;
  75.                     text-decoration: none;
  76.                     cursor: pointer;
  77.                 }
  78.  
  79.                 @media only screen and (max-width: 700px){
  80.                     .modal-content {
  81.                         width: 100%;
  82.                     }
  83.                 }
  84.         </style>
  85. </head>
  86.  
  87. <img id="sampleImg" src="gardens.jpg" alt="An Example of a Beautiful Garden" width="300" height="200">
  88.  
  89. <!-- Sample Modal -->
  90. <div id="sampleModal" class="modal">
  91.   <span class="close" id="closeModal">&times;</span>
  92.   <img class="modal-content" id="modalImage">
  93.   <div id="desc"></div>
  94. </div>
  95.  
  96. $(document).ready(function(){
  97.         $('#sampleImg').click(function(){
  98.                 var src = $(this).attr('src');
  99.                 var alt = $(this).attr('alt');
  100.  
  101.                 $('#sampleModal').css('display', 'block');
  102.                 $('#modalImage').attr('src', src);
  103.                 $('#desc').html(alt);
  104.         });
  105.  
  106.         $('#closeModal').click(function(){
  107.                 $('#sampleModal').css('display', 'none');
  108.         });
  109. });
  110. </body>
  111. </html>
That ends this tutorial. Happy Coding :)

Add new comment