Advertisement
1xptolevitico69

Onmouseover Event

Nov 17th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title></title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8. a { font-size:15px;font-family:arial;font-weight:900;color:white;
  9.     text-decoration:none;display:block;margin:50px 5px; }
  10. .bar {  width:250px;height:100vh;transition: all 0.2s linear;                          background-color:red;display:inline-block;position:fixed;
  11.         top:0;margin:0;left:-250px;  }
  12. .text { font-size:50px;text-align:center;margin:40px 0;display:block; }
  13. .H { font-size:90px;text-align:center;margin:40px 0;font-family:arial;  }
  14. .F { font-size:90px;text-align:center;margin:40px 0 90px 0;
  15.      font-family:arial;  }
  16. h2 {  margin:50px 0;padding:0 20px 0 50px;text-indent:100px;
  17.       font-size:25px;line-height:50px; }
  18. #close_nav {  float:right;  }
  19. #open_bar {  position:fixed;top:10px;  }
  20.  
  21. </style>
  22. </head>
  23. <body>
  24.  
  25. <div class='container'>
  26. <button onclick='open_bar()' id='open_bar'>Navigation Bar</button>
  27. <span id='bar' onmouseleave='enable()' onmouseover='disable()' class='bar'>
  28. <button onclick='shut()' id='close_nav'>close</button>
  29. <a target='_blank' href='https://www.w3schools.com/jsref/event_onmouseover.asp'>Onmouseover Event</a>
  30. </span>
  31. <h1 class='H'>Header</h1>
  32. <span class='text'>Some text</span>
  33. <h2>Style never met and those among great. At no or september sportsmen he perfectly happiness attending. Depending listening delivered off new she procuring satisfied sex existence. Person plenty answer to exeter it if. Law use assistance especially resolution cultivated did out sentiments unsatiable. Way necessary had intention happiness but september delighted his curiosity. Furniture furnished or on strangers neglected remainder engrossed.
  34.  
  35. Greatly cottage thought fortune no mention he. Of mr certainty arranging am smallness by conveying. Him plate you allow built grave. Sigh sang nay sex high yet door game. She dissimilar was favourable unreserved nay expression contrasted saw. Past her find she like bore pain open. Shy lose need eyes son not shot. Jennings removing are his eat dashwood. Middleton as pretended listening he smallness perceived. Now his but two green spoil drift.
  36.  
  37. Received overcame oh sensible so at an. Formed do change merely to county it. Am separate contempt domestic to to oh. On relation my so addition branched. Put hearing cottage she norland letters equally prepare too. Replied exposed savings he no viewing as up. Soon body add him hill. No father living really people estate if. Mistake do produce beloved demesne if am pursuit. </h2>
  38. </div>
  39. <h1 class='F'>Footer</h1>
  40.  
  41.  
  42. <script>
  43. window.onbeforeunload = function () {
  44.   window.scrollTo(0, 0);
  45. }
  46.  
  47. function shut(){
  48. bar.style.left = '-250px';
  49. }
  50.  
  51. function open_bar(){
  52. bar.style.left = '0';
  53. }
  54. function disable(){
  55. document.body.style.overflow='hidden';
  56. }
  57. function enable(){
  58. document.body.style.overflowY='scroll';
  59. }
  60.  
  61. </script>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement