MediaElement.js - 用于音频播放的启动屏幕

发布于 2024-11-04 04:25:11 字数 47 浏览 6 评论 0原文

有没有办法使用 MediaElement.js 显示静态启动屏幕以伴随音频剪辑?

Is there a way to display a static splash screen to accompany an audio clip using MediaElement.js?

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

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

发布评论

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

评论(1

熟人话多 2024-11-11 04:25:11

您可以使用 javascript 在 MEJS 的播放事件上更改图像文件的来源。查看网站右下角的 JS 一般格式示例:http://mediaelementjs.com/< /a>

对于你来说,事件监听器看起来像:

mediaElement.addEventListener('play', function(e) {
 document.getElementById('myImgID').src = 'funnybunny.jpg';
}, false);

You could use javascript to change the source of an image file on the play event of MEJS. Look in the bottom right hand corner of the site for an example of how the JS is generally formatted: http://mediaelementjs.com/

For you, the event listener would look something like:

mediaElement.addEventListener('play', function(e) {
 document.getElementById('myImgID').src = 'funnybunny.jpg';
}, false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文