Akira_Yiin

Untitled

Dec 31st, 2015
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. var bot_on = 0;
  2. function botbutton()
  3. {
  4. console.log("pressed,boton ="+bot_on);
  5. var btn = document.getElementById('turnBot');
  6.  
  7. if(bot_on)
  8. {
  9. bot_on=1;
  10. btn.style.borderColor = "#C12E2A";
  11. btn.style.backgroundImage = "linear-gradient(to bottom, #D9534F 0%, #C9302C 100%)";
  12. btn.value = "Stop";
  13. else {
  14. bot_on=0;
  15. btn.style.borderColor = "#449D44";
  16. btn.style.backgroundImage = "linear-gradient(to bottom, #5CB85C 0%, #449D44 100%)";
  17. btn.value = "Start";
  18. }
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment