Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>A Slide In Dashboard</title>
  8.  
  9. <link href="../_css/site.css" rel="stylesheet">
  10.  
  11. <style>
  12.  
  13. #dashboard {
  14.  
  15. width: 70px;
  16. opacity:0.6;
  17.  
  18. background-color: rgb(110,138,195);
  19.  
  20. padding: 20px 20px 0 20px;
  21.  
  22. position: absolute;
  23.  
  24. left: -92px;
  25. z-index: 100;
  26. }
  27.  
  28. #dashboard img {
  29.  
  30. margin-bottom: 20px;
  31.  
  32. order: 1px solid rgb(0,0,0);
  33. }
  34.  
  35. </style>
  36.  
  37. <script src="/_js/jquery-1.7.2.min.js">
  38. </script>
  39.  
  40. <script src="_js/jquery-1.6.3.min.js"></script>
  41.  
  42.  
  43.  
  44.  
  45. <script src="_js/jquery.easing.1.3.js"></script>
  46.  
  47.  
  48.  
  49.  
  50.  
  51. <script src="_js/jquery.color.js"></script>
  52.  
  53.  
  54. <script>
  55.  
  56. $(document).ready(function()
  57. {
  58.  
  59.  
  60. $('#dashboard').hover(
  61. function(){
  62.  
  63. $(this).stop().animate({ opacity:1.0}, 800);
  64. {
  65. left: '0' ,
  66. backgroundColor: 'rgb(255,255,255)'
  67.  
  68.  
  69.  
  70.  
  71. }
  72. 500,
  73. 'easeInSine'
  74. ); // end animate
  75. },
  76.  
  77.  
  78. function() {
  79. $(this).stop().animate({ opacity:0.3 }, 800;
  80. {
  81. left: '-92px'
  82. backgroundColor: 'rgb(110,138,195)'
  83. },
  84. 1500,
  85. 'easeOutBounce'
  86. ); // end animate
  87. }
  88. ); // end hover
  89. }); // end ready
  90.  
  91. </script>
  92.  
  93. </head>
  94.  
  95. <body>
  96.  
  97. <div class="wrapper">
  98. <div class="header">
  99.  
  100. <p class="logo">JavaScript <i>&</i> jQuery <i class="mm">The<br>Missing<br>Manual</i></p>
  101. </div>
  102.  
  103. <div id="dashboard">
  104. <img src="../_images/small/blue_h.jpg" width="70" height="70" alt="blue">
  105. <img src="../_images/small/green_h.jpg" width="70" height="70" alt="green">
  106. <img src="../_images/small/orange_h.jpg" width="70" height="70" alt="orange">
  107.  
  108. <img src="../_images/small/purple_h.jpg" width="70" height="70" alt="purple">
  109. <img src="../_images/small/red_h.jpg" width="70" height="70" alt="red">
  110. <img src="../_images/small/yellow_h.jpg" width="70" height="70" alt="yellow">
  111. </div>
  112.  
  113. <div class="content">
  114. <div class="main">
  115. <h1>Slide in Dashboard</h1>
  116. <p>Mouse over the blue stripe on the left edge of this page</p>
  117. </div>
  118. </div>
  119. <div class="footer">
  120. <p>JavaScript & jQuery: The Missing Manual, by <a href="http://sawmac.com/">David McFarland</a>. Published by <a href="http://oreilly.com/">O'Reilly Media, Inc</a>.</p>
  121. </div>
  122. </div>
  123.  
  124. </body>
  125.  
  126. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement