How can I make the #loadmessage in the UI of my Shiny application blink? I have come across resources like this
How to make blinking/flashing text with css3?
However, I am unsure how to implement this in R.
This is the loading feature I currently have in my UI code:
tags$head(tags$style(type="text/css",
"#loadmessage {
position: fixed;
top: 50%;
left: 50%;
opacity: 0.50;
opacity: 0.0;
text-align: center;
font-weight: bold;
font-size: 300%;
color: #000000;
z-index: 105;
}"))
conditionalPanel(condition="$('html').hasClass('shiny-busy')",tags$div("Loading...",id="loadmessage"))