如何制作 .mov“点击观看”这样就不会立即下载?

发布于 2024-09-26 16:28:27 字数 125 浏览 1 评论 0原文

在我的网站上,我有一个嵌入式视频 (.mov),当用户打开页面时,该视频会立即打开并开始播放。我想通过制作第一帧的图像来使该网站更易于使用,用户可以单击该图像来开始视频。在 HTML/javascript 中执行此操作的最佳方法是什么?

On my website, I have an embedded video (.mov) which opens and begins to play immediately when the user opens the page. I would like to make the site easier to use by making an image of the first frame which users can click on to begin the video. What's the best way to do this in HTML/javascript?

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

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

发布评论

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

评论(2

聽兲甴掵 2024-10-03 16:28:27
<embed src="http://www.tizag.com/files/html/htmlexample.mpeg"
 autostart="false" />

检查自动启动是否为 false

<embed src="http://www.tizag.com/files/html/htmlexample.mpeg"
 autostart="false" />

check autostart is false

╰つ倒转 2024-10-03 16:28:27

我这样做的方法是创建一个 javascript 函数,该函数在单击时更新innerHTML 行,如下所示:

function displayVideo() {
  document.getElementById('videoContainer').innerHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="320" height="480" style="float:left"><param name=src value="resources/screencast.mov" /><param name=controller value=false /><param name=autoplay value=true /><param name=loop value=true /><embed src="resources/screencast.mov" width="320" height="480" controller=false autoplay=true loop=true pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" /></object>';

}

The way I did this was to make a javascript function which updated the innerHTML line when clicked, like this:

function displayVideo() {
  document.getElementById('videoContainer').innerHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="320" height="480" style="float:left"><param name=src value="resources/screencast.mov" /><param name=controller value=false /><param name=autoplay value=true /><param name=loop value=true /><embed src="resources/screencast.mov" width="320" height="480" controller=false autoplay=true loop=true pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" /></object>';

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文