Sozi是一种inkscape扩展,当在启用svg的web浏览器中查看时,它允许像Prezi一样平移/缩放svg文件。youtube视频可以嵌入到Prezi中,我希望能够在svg中嵌入youtube视频(或任何类型的视频)。我知道可以在svg文档中创建html链接( inkscape直接支持这一点)。有没有办法嵌入视频(通过iframe或video标签?)变成svg吗?
发布于 2011-05-26 17:13:38
<foreignObject width="560" height="349">
<iframe xmlns="http://www.w3.org/1999/xhtml"
width="560" height="349"
src="http://www.youtube.com/embed/YOUR-MOVIE-ID"
frameborder="0"></iframe>
</foreignObject>这应该能起到作用。请注意,xmlns属性保留在iframe元素上。foreignObject是explained here。
https://stackoverflow.com/questions/6134184
复制相似问题