Toggle Switch To Change LED Animation Not Working

Perhaps in this piece

  if(buttonState==HIGH){
    stripL.setPixelColor(8,0,255,0,0);
    stripL.setBrightness(255);
  }

you also need a line

stripL.show();

...R