Guest User

Untitled

a guest
Mar 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>PopUp</title>
  5.     <script type="text/javascript">
  6.  
  7.  
  8.  
  9.     </script>
  10.     <style type="text/css">
  11.  
  12.         .popover {
  13.           display: block;
  14.           background-color: rgba(0, 0, 0, 0.85);
  15.           border-radius: 5px;
  16.           box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  17.           color: #fff;
  18.           font-size: 12px;
  19.           font-family: 'Helvetica',sans-serif;
  20.           padding: 7px 10px;
  21.           position: relative;
  22.           width: 200px;
  23.         }
  24.  
  25.     </style>
  26. </head>
  27. <body>
  28. <div id="container">
  29.     <a href="#" data-popover="POPOVER TEXT">Hover</a>
  30.     <!-- <div class="popover">POPOVER TEXT</div> -->
  31. </div>
  32.    
  33. </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment