Guest User

Untitled

a guest
Dec 10th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. class div:
  2. .right {
  3. position: relative;
  4. width: 50%;
  5. height: 100%;
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. flex-wrap: wrap;
  10. }
  11.  
  12. <script>
  13. $(document).ready(function() {
  14. $("#animate").click(function() {
  15. $('#content').animate({"left": "50%"},"slow");
  16. $('#content2').animate({"right": "50%"},"slow");
  17. $('#container2').removeClass("container-2");
  18. $('#container2').addClass("container-3");
  19.  
  20. });
  21. });
  22. </script>
Add Comment
Please, Sign In to add comment