Akira_Yiin

Untitled

Dec 31st, 2015
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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=0;
  10. btn.style.borderColor = "#449D44";
  11. btn.style.backgroundImage = "linear-gradient(to bottom, #5CB85C 0%, #449D44 100%)";
  12. btn.innerHTML = "Start";
  13. else {
  14. bot_on=1;
  15. btn.style.borderColor = "#C12E2A";
  16. btn.style.backgroundImage = "linear-gradient(to bottom, #D9534F 0%, #C9302C 100%)";
  17. btn.innerHTML = "Stop";
  18. }
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment