Sozi是一个inkscape扩展,在启用svg的Web浏览器中查看时,允许类似Prezi的平移/缩放svg文件. youtube视频可以嵌入Prezi中,我希望能够在svg中嵌入YouTube视频(或任何类型的视频).我知道可以在svg文档中创建html链接(并且inkscape直接支持这一点).有没有办法将视频(通过iframe或视频标签?)嵌入到svg中?
解决方法
<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.