Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('img.animated').hover(
  3. function() {
  4. $(this).addClass('bounce'); // Добавляем класс bounce
  5. },
  6. function() {
  7. $(this).removeClass('bounce'); // Убираем класс
  8. }
  9. )});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement