在R markdown HTML文档中嵌入外部网页的htmlwidget

时间:2017-09-25 08:51:13

标签: r embed r-markdown htmlwidgets

例如,在this webpage上有两个htmlwidgets(一个传单和一个DataTable)。

我想创建一个本地R Markdown HTML文档,通过直接链接到这些文档来嵌入其中一个htmlwidgets,就像通过iframe嵌入YouTube视频一样。

有什么想法吗?

我到目前为止所做的是

---
title: "Test Embedded"
output:
  html_document:
    css: styles.css
---

<!-- http://stackoverflow.com/questions/11122249/scale-iframe-css-width-100-like-an-image -->
<div class="h_iframe">
<!-- a transparent image is preferable -->
<p><img class="ratio" src="http://placehold.it/16x12"/> <iframe src="https://r-in-grenoble.github.io/members.html#htmlwidget-21bab010f9ed250fc856" style="border: 0" frameborder="0" scrolling="no"></iframe></p>
</div>

styles.css包含

html,body        {height:100%;}
.wrapper         {width:100%;height:100%;margin:0 auto;background:#CCC}
.h_iframe        {position:relative;}
.h_iframe .ratio {display:block;width:100%;height:auto;}
.h_iframe iframe {position:absolute;top:0;left:0;width:100%; height:100%;}

然而,它似乎嵌入了整个网页,而不仅仅是相应的htmlwidget。

0 个答案:

没有答案