作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
试图弄清楚如何在 ioslides markdown 中拥有一个全尺寸 Shiny 的应用程序。我有一些几乎可以工作的东西,但它有点临时。我也不确定当我在更大分辨率的屏幕上显示演示文稿时它会重现(因为我在 px
中使用 div
)?:
---
title: "My Title"
author: "My Name"
date: "29 March 2016"
runtime: shiny
output:
ioslides_presentation
---
##
<div style="margin-left:-50px; margin-top:-50px; width:80%; height:100%">
```{r, echo=FALSE, message=FALSE, fig.width=8}
inputPanel(
selectInput("n_breaks", label = "Number of bins:",
choices = c(10, 20, 35, 50), selected = 20),
sliderInput("bw_adjust", label = "Bandwidth adjustment:",
min = 0.2, max = 2, value = 1, step = 0.2)
)
renderPlot({
hist(faithful$eruptions, probability = TRUE, breaks = as.numeric(input$n_breaks),
xlab = "Duration (minutes)", main = "Geyser eruption duration")
dens <- density(faithful$eruptions, adjust = input$bw_adjust)
lines(dens, col = "blue")
})
```
</div>
最佳答案
尝试使用您的 div<>
中的值.您可以超过 100% 并以像素为单位设置大小,例如<div style="margin-left:-120px; margin-top:-50px; width:900px">
关于r - ioslides Markdown 演示幻灯片中的全尺寸 Shiny 应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36287791/
我是一名优秀的程序员,十分优秀!