Guest User

Untitled

a guest
Dec 17th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. .desktop-nav .sub-menu {
  2. opacity: 0;
  3. }
  4. .desktop-nav li:hover .sub-menu {
  5. opacity: 1;
  6. animation-duration: 1s;
  7. animation-name: fade-in;
  8. -moz-animation-duration: 1s;
  9. -moz-animation-name: fade-in;
  10. -webkit-animation-duration: 1s;
  11. -webkit-animation-name: fade-in;
  12. }
  13. @keyframes fade-in {
  14. 0% {display: none; opacity: 0;}
  15. 100% {display: block; opacity: 1;}
  16. }
  17. @-moz-keyframes fade-in {
  18. 0% {display: none; opacity: 0;}
  19. 100% {display: block; opacity: 1;}
  20. }
  21. @-webkit-keyframes fade-in {
  22. 0% {display: none; opacity: 0;}
  23. 100% {display: block; opacity: 1;}
  24. }
Add Comment
Please, Sign In to add comment