如何使用 JavaScript 将 QuickTime 电影嵌入到 iPhone Web 应用程序中?

发布于 2024-08-21 23:41:39 字数 186 浏览 4 评论 0原文

我第一次在 dashcode 中创建一个 iphone web 应用程序,我无法弄清楚将视频嵌入到 web 应用程序中的代码。我有一个 html 文件,并且有几个页面可以在其之间切换,但我需要在中创建一个函数javascript,所以当我单击一个按钮时,它会在 Quicktime 中拉出一个视频。有示例代码或想法吗?如果有人能给我一些示例代码,我将不胜感激

I'm creating an iphone webapp in dashcode for the first time and I can not figure out the code for embedding a video into the webapp.I have an html file and have a few pages it switches between but I need to create a function in javascript so when I click a button that it will pull up a video I in quicktime. Any sample code or thoughts? If anyone could give me some samplecode I would appreciate it

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

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

发布评论

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

评论(2

长亭外,古道边 2024-08-28 23:41:39

您可以尝试这样的事情(完全未经测试):

function showVideo(vidFile) {
    var vidElem=document.createElement("video");
    vidElem.setAttribute("src", vidFile);
    vidElem.play();
}

然后像这样调用它:

showVideo("your_movie_file.mov");

You could try something like this (completely untested):

function showVideo(vidFile) {
    var vidElem=document.createElement("video");
    vidElem.setAttribute("src", vidFile);
    vidElem.play();
}

And then invoke it like this:

showVideo("your_movie_file.mov");
握住你手 2024-08-28 23:41:39
  1. .html 文件
  2. 创建嵌入以下代码的

  1. 将您的文件上传到您的网络服务器。
  2. 测试你的文件。 (确保您的电影文件也在您的网络服务器中......
  1. create your .html file
  2. embed the following code :

<video src="your_movie_file.mov" controls="controls">
your browser does not support the video tag
<video>

  1. upload your file to your webserver.
  2. test your files. (make sure your movie file in your webserver too...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文