Guest User

Untitled

a guest
Oct 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. .post-info {
  2. ..
  3. ..
  4. opacity: 0;
  5. transform: translate3d(0,0,0);
  6. transition: all 0.3s ease; /* can't add specific property because it ignores the other one */
  7. }
  8.  
  9. .active .post-info {
  10. opacity: 1; /* When post is active (slider), show the post-info */
  11. }
  12.  
  13. .post-info:hover {
  14. transform: translate3d(0,15px,0); /* When I hover the post-info, make it go up a bit */
  15. }
  16.  
  17. .post-info {
  18. ..
  19. ..
  20. opacity: 0;
  21. transition: opacity 0.3s ease;
  22.  
  23. transform: translate3d(0,0,0);
  24. transition: transform 0.5s ease-in;
  25. }
Add Comment
Please, Sign In to add comment