conception

Sany's hover nav

Apr 19th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. <div id="hoverbox"> <div class="linkbox">
  2. <h3>Staff Links</h3>
  3. <a href="http://vampirefreaks.com/cults/group_edit.php?c=aphroditetester" class="navlink">Edit Cult</a>
  4. <a href="http://vampirefreaks.com/group_edit_members.php?c=aphroditetester" class="navlink">Edit Members</a>
  5. <a href="http://vampirefreaks.com/group_invite.php?c=aphroditetester" class="navlink">Invite Members</a>
  6. <a href="http://vampirefreaks.com/cults/controlpanel.php?c=aphroditetester" class="navlink">Control Panel</a>
  7. <a href="http://vampirefreaks.com/cults/statistics.php?c=designguide" class="navlink">Cult Statistics</a>
  8. <a href="http://vampirefreaks.com" class="navlink">VF Main</a>
  9. <h3>Other Links</h3>
  10. <a href="link" class="navlink">name</a>
  11. <a href="link" class="navlink">name</a>
  12.  
  13. <h3>Credits</h3>
  14. <a href="http://vampirefreaks.com/conception" class="navlink">Layout Credit</a>
  15. <a href="http://vampirefreaks.com/nicezebra" class="navlink">Header Credit</a>
  16. <a href="http://vampirefreaks.com/sany" class="navlink">Nav Credit</a>
  17. </div>
  18. <div class="navig"> N<br /> A<br /> V<br /> I<br /> G<br /> A<br /> T<br /> I<br /> O<br /> N<br /></div> </div>
  19.  
  20.  
  21. <style>
  22.  
  23. #hoverbox {
  24. position: fixed;
  25. background: #03476E;
  26. height:100%;
  27. left:-200px;
  28. top: 0px;
  29. width:200px;
  30. -webkit-transition: all 1s ease;
  31. -moz-transition: all 1s ease;
  32. -o-transition: all 1s ease;
  33. }
  34.  
  35. #hoverbox:hover {
  36. left:0px;
  37. -webkit-transition: all 1s ease;
  38. -moz-transition: all 1s ease;
  39. -o-transition: all 1s ease
  40. }
  41.  
  42. .navig {
  43. position:absolute;
  44. height:100%;
  45. width:30px;
  46. left:0px;
  47. padding: 5px;
  48. margin-left:200px;
  49. background: #03476E;
  50. text-align:center;
  51. font-weight:lighter;
  52. line-height:40px;
  53. font-size: 30px;
  54. color: #87BDC7;
  55. font-family:
  56. trebuchet ms;
  57. text-transform:uppercase;
  58. text-shadow: none;
  59. -webkit-transition: all 1s ease;
  60. -moz-transition: all 1s ease;
  61. -o-transition: all 1s ease;
  62. }
  63.  
  64. #hoverbox:hover .navig {
  65. opacity:0;
  66. -webkit-transition: all 1s ease;
  67. -moz-transition: all 1s ease;
  68. -o-transition: all 1s ease
  69. }
  70.  
  71. .linkbox {
  72. position:absolute;
  73. height:100%;
  74. padding: 5px;
  75. left:-200px;
  76. background: #2a2a2a;
  77. width: 200px;
  78. -webkit-transition: all 1s ease;
  79. -moz-transition: all 1s ease;
  80. -o-transition: all 1s ease
  81. }
  82.  
  83. #hoverbox:hover .linkbox {
  84. width:200px;
  85. left:0px;
  86. -webkit-transition: all 1s ease;
  87. -moz-transition: all 1s ease;
  88. -o-transition: all 1s ease
  89. }
  90.  
  91. .navlink {
  92. display: block;
  93. background: #038BA5;
  94. width: 95%;
  95. font-variant: small-caps;
  96. font-family: trebuchet ms;
  97. color: #87BDC7;
  98. margin: 2px;
  99. font-size: 12pt;
  100. border-left: 2px solid #0D5759;
  101. border-right: 2px solid #0d5759;
  102. border-radius: 5px;
  103. }
  104. </style>
Advertisement
Add Comment
Please, Sign In to add comment