e55db081d05f58a

RotateFreeAssange

Jun 9th, 2019
6,685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Use:
  2. //Go to: https://twitter.com/PetiteNicoco/status/1137898062347718656
  3. //F12 > console > paste code
  4. //Result: https://video.twimg.com/ext_tw_video/1137905541433495552/pu/vid/336x544/YBO179c8WE-aqYx9.mp4?tag=10
  5.  
  6. function rot(i,ii){
  7. ii+=10;
  8. if(ii>=360){ii=0;}
  9. $('img')[i].style.transform='rotate('+ii+'deg)';
  10. setTimeout(rot,100,i,ii);
  11. }
  12. i=0;
  13. t=$('img').length;
  14. while(i<t){
  15. if($('img')[i].src=='https://pbs.twimg.com/media/D8qgQXnXYAAKGG_.jpg' || $('img')[i].src=='https://pbs.twimg.com/media/D8qelerWsAY0dla.jpg'){
  16. ii=10;
  17. rot(i,ii);
  18. }
  19. i++;
  20. }
Add Comment
Please, Sign In to add comment