微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Rshiny仪表板背景图片显示内容的问题

如何解决Rshiny仪表板背景图片显示内容的问题

我的问题是无法在 rshiny 仪表板的选项卡中使用内联 css 在背景图像上呈现内容。我只是设法把背景图片弄起来。

tabItem(tabName = "welcome",tags$div(   
                tags$div(
                  tags$img(src='game background image.png',style="position: absolute; 
                         top: 0; 
                         left: 0; 
                         right: 0; 
                         bottom: 0; 
                         margin: auto; 
                         min-width: 50%;
                         min-height: 50%;"),tags$div(
                  tags$img(
                    src = "Platershiny game logo.png",style = 'display: block;
                margin-left: auto;
                margin-right: auto;
                width: 50%;'),tags$br(),tags$h2('WELCOME!',style='color:#D6AC18;font-family:Times New Roman;align:center;'),tags$h3(
                    'About Game',style='color:#D6AC18;font-family:Times New Roman;;align:center;'),tags$p("Under construction currently",tags$h3("Instructions",tags$p("There are no rules for this game yet. We are simply demonstrating the elements of a two-player game.",tags$h3("Team Members",actionButton("register","Register"),actionButton("login","Login"),tags$h4("Logged in as:"),htmlOutput("loggedInAs")
                )
              ),style="position: fixed; 
                       top: -50%; 
                       left: -50%; 
                       width: 200%; 
                       height: 200%;
                       display:flex;"))

background image without content

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。