如何嵌入 QuickTime VR“thingy”在 HTML 页面中?

发布于 2024-08-09 06:07:44 字数 264 浏览 6 评论 0原文

如果您愿意,请使用 send-me-the-codez 标记此内容。我被要求协助将 Quicktime VR thingy(缺少更好的术语。电影?小程序?)放入 HTML 页面中。我该怎么办呢?非常感谢在线示例的指针。

:我查看了 Apple 的 iPhone 360​​ 度视图,(我认为)这是我在互联网上看到的唯一的 QuickTime VR 示例。 Apple 的样本中充满了 JavaScript,看起来像是可怕的矫枉过正。

Tag this with send-me-the-codez if you will. I've been asked to assist in putting a Quicktime VR thingy (for lack of better term. movie? applet?) in an HTML page. How would I go about this? Pointers to examples online are most appreciated.

Note: I checked out Apple's iPhone 360-degree views, which (I think) are the only examples of QuickTime VR that I've seen on the internets. The Apple specimens are laden with JavaScript and seem like terrible overkill.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌吟 2024-08-16 06:07:44

据我所知,嵌入 QTVR 与嵌入 QT 视频相同,例如:

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="..." height="...">
    <param name="src" value="....mov">
    <param name="autoplay" value="true">
    <param name="controller" value="true">

    <embed src="....mov" width="..." height="..." autoplay="true" controller="true"></embed>
</object> 

As far as I'm aware embedding QTVR is just the same as embedding a QT video, eg:

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="..." height="...">
    <param name="src" value="....mov">
    <param name="autoplay" value="true">
    <param name="controller" value="true">

    <embed src="....mov" width="..." height="..." autoplay="true" controller="true"></embed>
</object> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文