0

I am using the css and code below:

 tags$head(tags$style(HTML('
   textArea {
     background-color: #58d68d !important;
     border: none;
   }')))

and

textAreaInput(
          "inputId",
          "Select Working Directoy Path :- ",
          value = HTML("Processing"),
          width = NULL,
          height = '40px',
          cols = NULL,
          rows = NULL,
          placeholder = " Eg :- C:/Users/paras118053/Desktop/OFAC Soluton Design",
          resize = NULL
        )

I want to make the text "Processing" blink. I am able to achieve the below output using this code:

enter image description here

How can I make it blink?

ProgrammerPer
  • 1,125
  • 1
  • 11
  • 26
Paras Ghai
  • 363
  • 1
  • 6
  • 14
  • Maybe [this](https://stackoverflow.com/questions/37470226/blinking-loading-text-in-r-shiny) is helpful? –  Jul 31 '19 at 07:07

1 Answers1

0

This is more a CSS question than Shiny, check out this stackoverflow question.

How to make blinking/flashing text with CSS 3?

Michael Scott
  • 186
  • 1
  • 7