Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <li>
  2. <div class="header-navigation-item-state-wrapper">
  3. <div class="white">
  4. <h4 class="header-white">Collections</h4>
  5.  
  6. </div>
  7. <div class="black">
  8. <h4 class="header-black">Collections</h4>
  9.  
  10. </div>
  11. </div>
  12. </li>
  13.  
  14. * {
  15. background:yellow
  16. }
  17. li {
  18. list-style:none;
  19. }
  20. .header-black {
  21. background:#000;
  22. color:#fff;
  23. padding:10px;
  24. display:block
  25. }
  26. .black {
  27. display:none;
  28. }
  29. .header-white {
  30. background:#fff;
  31. color:#000;
  32. padding:10px;
  33. display:block
  34. }
  35.  
  36. $(document).ready(function () {
  37. $("li").mouseenter(function () {
  38. $(".white").css('display', 'none');
  39. $(".black").css('display', 'block');
  40. });
  41. $("li").mouseleave(function () {
  42. $(".white").css('display', 'block');
  43. $(".black").css('display', 'none');
  44. });
  45. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement