【问题标题】:Make blinking text in textareainput in r shiny?使r中textareainput中的闪烁文本闪亮?
【发布时间】:2019-12-08 14:58:12
【问题描述】:

我正在使用下面的 css 和代码:

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

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
        )

我想让文本“处理中”闪烁。我可以使用此代码实现以下输出:

如何让它闪烁?

【问题讨论】:

  • 也许this 有帮助?

标签: r shiny


【解决方案1】:

这更像是一个 CSS 问题而不是 Shiny,请查看 thisstackoverflow 问题。

How to make blinking/flashing text with CSS 3?

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2016-12-20
    • 2021-05-31
    • 2021-01-17
    • 2017-03-08
    • 2016-09-25
    • 2018-01-30
    • 2015-05-15
    相关资源
    最近更新 更多