jesobreira

Image popup on page

Jun 14th, 2015
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. <!-- popup -->
  2. <style type="text/css">
  3. #popupped {
  4.   z-index: 1000;
  5.   position: absolute;
  6.   left: 50%;
  7.   top: 50%;
  8.  
  9.   transform: translate(-160%, -90%);
  10.  
  11.   width: 40%;
  12.   height: 50%;
  13. }
  14. #blackscreen {
  15.     width: 100%;
  16.     height: 100%;
  17.     margin: 0em;
  18.     left: 0em;
  19.     top: 0em;
  20.     background: rgba(255, 255, 255, 0.93);
  21.     position: fixed;
  22.         z-index: 999;
  23. }
  24. #popupped #lnk {
  25.     color: #111;
  26.     text-decoration: none;
  27.     font-family: Verdana,Arial,Sans-serif;
  28.     font-size: 10px;
  29. }
  30.  
  31. #popupped #lnk img {
  32.     height: 20px;
  33.         max-width: 100%;
  34. }
  35. </style>
  36. <script type="text/javascript">
  37.     jQuery(document).ready(function() {
  38.         jQuery("#popupped #lnk,#blackscreen").click(function(e) {
  39.             e.preventDefault();
  40.             jQuery("#blackscreen,#popupped").fadeOut();
  41.         });
  42.     });
  43. </script>
  44. <div id="blackscreen"> </div>
  45. <div id="popupped"><a id="lnk" href="#"> <img src="http://cdn.ninhodaroxinha.com.br/reveillon/close.png" border="0" /> clique para fechar </a> <a id="mainlnk" href="http://www.ninhodaroxinha.com.br/reservas/" target="_blank"> <img src="http://cdn.ninhodaroxinha.com.br/namorados/namorados.png" border="0" alt="Dia dos Namorados no Ninho da Roxinha. Clique para saber mais." title="" /> </a></div>
  46. <!-- /popup -->
Add Comment
Please, Sign In to add comment