Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.  
  5. <link rel="stylesheet" href="jquery.sidr.light.css">
  6.  
  7. <style>
  8.  
  9. #hoverzone {
  10. border:2px solid black;
  11. width:200px;
  12. height:100px
  13. }
  14.  
  15. </style>
  16.  
  17. </head>
  18.  
  19. <body>
  20.  
  21. <div id="hoverzone">
  22. </div>
  23.  
  24. <div id="sidr">
  25. </div>
  26.  
  27. <script src="jquery-1.11.1.js"></script>
  28.  
  29. <script src="jquery.sidr.min.js"></script>
  30.  
  31. <script>
  32.  
  33. $(document).ready(function() {
  34. $('#hoverzone').hover(function() {
  35. $.sidr('open', '#sidr');
  36. },
  37. function(){
  38. $.sidr('close', '#sidr');
  39. }
  40. ); preventDefaultEvents: false
  41. });
  42.  
  43. </script>
  44.  
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement