Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>TEST</title>
  6. <link rel="shortcut icon" href="../Pictures/Logo.png" />
  7. <link rel="stylesheet" href="stylesheet.css" type="text/css" />
  8. <script src="jquery-2.1.1.min.js"></script>
  9. </head>
  10.  
  11. <body>
  12.  
  13. <script>
  14. $("#teamalpha").mouseover(
  15. function(){
  16. $("#teamalpha > div").slideDown(400);
  17. });
  18.  
  19.  
  20. </script>
  21. <div id="teamalpha">
  22. <div>
  23. <p>AlphaGuardian</p>
  24. <p>Owner</p>
  25. </div>
  26.  
  27. </div>
  28.  
  29. </div>
  30.  
  31. </body>
  32. </html>
  33.  
  34. #teamalpha{
  35.  
  36.  
  37. font-family:Optimus;
  38. font-size:24px;
  39. text-align:center;
  40. border:solid;
  41. border-color:#000;
  42. width:250px;
  43. height:250px;
  44. position:relative;
  45. top:100px;
  46. left:200px;
  47. cursor:pointer;
  48. z-index:5;
  49. }
  50.  
  51.  
  52.  
  53. #teamalpha div{
  54. position:relative;
  55. top:-50px;
  56. height:100px;
  57. display:none;
  58. width:250;
  59. background-color:#f7931e;
  60. z-index:6;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement