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:
How can I make it blink?