Files

19 lines
811 B
Plaintext
Raw Permalink Normal View History

2022-08-27 20:17:15 +10:00
# Linux
2022-12-01 16:18:59 +08:00
このページでは、Linux向けのWailsアプリケーション開発に関する、様々なガイドを掲載しています。
2022-08-27 20:17:15 +10:00
2022-12-01 16:18:59 +08:00
## videoタグが"ended"イベントを発火しない
2022-08-27 20:17:15 +10:00
2022-12-01 16:18:59 +08:00
videoタグを使用している場合、ビデオの再生が終了しても"ended"イベントが発火しません。 これはWebkitのバグであり、次のような回避策を講じることで修正できます:
2022-08-27 20:17:15 +10:00
```js
videoTag.addEventListener("timeupdate", (event) => {
if (event.target.duration - event.target.currentTime < 0.2) {
let ended = new Event("ended");
event.target.dispatchEvent(ended);
}
});
```
2022-12-01 16:18:59 +08:00
出典: [ディスカッションボード](https://github.com/wailsapp/wails/issues/1729#issuecomment-1212291275)における[Lyimmi](https://github.com/Lyimmi)のコメント