Guest User

Untitled

a guest
Aug 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <script type='text/javascript'>
  2. $(document).ready(function() {
  3. function anim(duration){
  4. $('#mint').animate(
  5. {height: 'toggle'},
  6. {duration: duration, specialEasing: {height: 'easeOutBounce'}}
  7. );
  8. }
  9.  
  10. $('#closebtn').click(function() {
  11. $('#mintbar').slideUp();
  12. anim(800);
  13. });
  14.  
  15. $('#mint').click(function() {
  16. anim(500);
  17. $('#mintbar').slideDown('slow','easeOutBounce');
  18. });
  19. });
  20. </script>
Add Comment
Please, Sign In to add comment