例如,在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。