Advertisement
gavin19

Sample transitions

Jul 4th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.68 KB | None | 0 0
  1. html { overflow-y: visible!important; }
  2. .nav-menu > .menu-item > ul {
  3.     -webkit-transition: opacity 1s ease,
  4.                         top .6s ease,
  5.                         z-index 1.2s ease!important;
  6.     -moz-transition: opacity 1s ease,
  7.                         top .6s ease,
  8.                         z-index 1.2s ease!important;
  9.     transition: opacity 1s ease,
  10.                         top .6s ease,
  11.                         z-index 1.2s ease!important;
  12.     display: block!important;
  13.     opacity: 0!important;
  14.     z-index: -1!important;
  15.     top: 0!important;
  16. }
  17. .nav-menu > .menu-item:hover > ul {
  18.     opacity: 1!important;
  19.     z-index: 1!important;
  20.     top: 100%!important;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement