Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $('ul.hover_block li').hover(function() {
  2. $(this).find('img').eq(1).animate({
  3. top: '425px'
  4. }, {
  5. queue: false,
  6. duration: 500
  7. });
  8. }, function() {
  9. $(this).find('img').eq(1).animate({
  10. top: '0px'
  11. }, {
  12. queue: false,
  13. duration: 500
  14. });
  15. });​
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement