Advertisement
Guest User

Untitled

a guest
Jun 27th, 2015
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $( document ).ready(function() {
  2. socket.on('wheelspin', function (random) {
  3. var img = document.querySelector('img');
  4. $("img").fadeIn();
  5. console.log('wheelspin!!!');
  6. console.log('fadeIn');
  7. // do something with data
  8.  
  9. img.removeAttribute('style');
  10. var deg = 0;
  11.  
  12. console.log('deg = ' + deg);
  13. console.log('Number = ' + random);
  14.  
  15. if(random == 0) {var deg = 15; var css = '-webkit-transform: rotate(' + deg + 'deg);'; }
  16.  
  17. img.setAttribute(
  18. 'style', css
  19. );
  20. });
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement