R语言 强制嵌入式plotly情节全屏

ccgok5k5  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(117)

我使用下面的代码<iframe width="100%" height="500" src="fig3_small.html" allowfullscreen="allowfullscreen" frameborder="0"></iframe>在html中嵌入了一个plotly plot作为iframe。
图是用R生成的,并导出为html。然而,一旦嵌入到html中,图就会受到iframe尺寸的限制,我想知道是否有一个技巧可以强制图全屏打开,无论是作为弹出窗口还是在新标签中。


的数据

uxh89sit

uxh89sit1#

您不需要将plotly图嵌入为<iframe>,以便能够在新选项卡中打开它。只需将其作为超链接传递到您的网站中,如下面的代码所示:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Plotly Graph</title>
</head>
<body>
    <br><br>
    <div><a href = "fig3_small.html" target="_blank" style="text-decoration: none;"><h1 style="text-align: center;"><strong>Plotly Graph</strong></h1></a></div>
</body>
</html>

字符串
当您单击Plotly Graph按钮时,它将在另一个窗口选项卡中以全屏形式显示您的图。
我希望这对你有帮助!

相关问题