Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. .container .box_A,
  2. .container .box_B {
  3. width: 50%;
  4. overflow: hidden;
  5. height: 100%;
  6. -webkit-font-smoothing: antialiased;
  7. -webkit-transition: all .3s;
  8. -moz-transition: all .3s;
  9. -o-transition: all .3s;
  10. transition: all .3s;
  11. }
  12. .container:hover .box_A ,
  13. .container:hover .box_B {
  14. width: 0%;
  15. }
  16. .container:hover .box_A:hover ,
  17. .container:hover .box_B:hover {
  18. width: 100%;
  19. }
  20.  
  21. <div class="container">
  22. <div class="box_A"></div>
  23. <div class="box_B"></div>
  24. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement