Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. div{
  2. display:inline;
  3. padding:5px;
  4. margin:5px;
  5. border:1px solid #ccc;
  6. transition: 0s display;
  7. }
  8.  
  9. #show {
  10. display: none;
  11. }
  12.  
  13. #hover:hover + #show{
  14. display: block;
  15. opacity: 0;
  16. animation: 2s show;
  17. }
  18.  
  19. @keyframes show {
  20. 0%, 74% {
  21. opacity: 0;
  22. }
  23.  
  24. 75%, 100% {
  25. opacity: 1;
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement