elsaofarendelle

hover reveal content

Dec 8th, 2016 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #svenhover {
  2. opacity: 0;
  3. -webkit-transition: all 0.6s ease-in-out;
  4. -moz-transition: all 0.6s ease-in-out;
  5. -o-transition: all 0.6s ease-in-out;
  6. -ms-transition: all 0.6s ease-in-out;
  7. transition: all 0.6s ease-in-out;
  8. }
  9.  
  10. #svenhover:hover {
  11. opacity: 1;
  12. -webkit-transition: all 0.6s ease-in-out;
  13. -moz-transition: all 0.6s ease-in-out;
  14. -o-transition: all 0.6s ease-in-out;
  15. -ms-transition: all 0.6s ease-in-out;
  16. transition: all 0.6s ease-in-out;
  17. }
  18.  
  19. <div id="svenhover">
Advertisement
Add Comment
Please, Sign In to add comment