Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var vibrate = function() {
  2.  
  3. var shake= 3;
  4.  
  5. $(".actionsMode[mode='on']").stop(true, false)
  6. .css({
  7. position: 'relative',
  8. left: Math.round(Math.random() * shake) - ((shake + 1) / 2) + 'px',
  9. top: Math.round(Math.random() * shake) - ((shake + 1) / 2) + 'px'
  10. });
  11. };
  12.  
  13. var stop_vibrate = function() {
  14. clearInterval(vibrateIndex);
  15. $(".actionsMode[mode='on']").stop(true,false)
  16. .css({position: 'static', left: '0px', top: '0px'});
  17. };
Add Comment
Please, Sign In to add comment