mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-18 09:59:31 +08:00
19 lines
666 B
Plaintext
19 lines
666 B
Plaintext
# Linux
|
|
|
|
此页面包含与开发适用于 Linux 的 Wails 应用程序相关的其他指南。
|
|
|
|
## video 标签不能触发 "ended" 事件
|
|
|
|
使用视频标签时,视频播放完毕后不会触发“结束”事件。 这是 WebkitGTK 中的一个错误,但是您可以使用以下解决方法来修复它:
|
|
|
|
```js
|
|
videoTag.addEventListener("timeupdate", (event) => {
|
|
if (event.target.duration - event.target.currentTime < 0.2) {
|
|
let ended = new Event("ended");
|
|
event.target.dispatchEvent(ended);
|
|
}
|
|
});
|
|
```
|
|
|
|
资料来源:[讨论板](https://github.com/wailsapp/wails/issues/1729#issuecomment-1212291275) 上的 [Lyimmi](https://github.com/Lyimmi)
|