Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var test = false;
  2. $( document ).ready(function() {
  3. $(".box").hover(function(){
  4. if (test == false) {
  5. $(this).stop(false, true).flip({speed: 350, direction:'lr', color:'#c5cac6', content:$(this).children('.info').text()})
  6. test = true;
  7. }
  8. }, function(){
  9. $(this).stop(false, true).revertFlip();
  10. test = false;
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement