Advertisement
Mr_Dinnertime

ICS Cow Flasher

Nov 7th, 2014
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. function ICSFlasher ()
  2. {
  3.  
  4.  
  5. this.flashCow = function()
  6. {
  7. setTimeout(function()
  8. {
  9. var happinessLevel = document.getElementById('happiness');
  10. if (happinessLevel.style.width.replace('%','') <= 99.0566)
  11. {
  12. var cow = document.getElementsByClassName('cow')[0];
  13. cow.style.backgroundColor = '#000000';
  14. setTimeout(function()
  15. {
  16. cow.style.backgroundColor = '';
  17. }, 333);
  18. }
  19. this.flashCow();
  20. }.bind(this), 1000);
  21. };
  22. }
  23.  
  24. iCSFlasher = new ICSFlasher();
  25. iCSFlasher.flashCow();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement