Advertisement
nikolayneykov

Untitled

Aug 1st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const animate = (container) => {
  2.   $(container).children().animate({ opacity: 0, easing: 'linear' }, 0);
  3.   $(container).children().animate({ opacity: 1, easing: 'linear' }, 300);
  4. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement