我想知道如何在标签范围内嵌入整个reveal.js演示文稿,以便我的演示文稿看起来像slideshare.net上的演示文稿

提前致谢。

最佳答案

您无法通过div做到这一点。您所描述的声音与iframe的用途完全一样。

<iframe width="400" height="400" marginheight="0" marginwidth="0" src="/your/reveal/slideshow.html">
  Fallback text here for unsupporting browsers, of which there are scant few.
</iframe>

我没有尝试过自己做,但这是可以使用的正确工具。尝试点点头,您应该让它做您想要的。

其他资源:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe

09-28 07:55