improved seek bar functionality.

This commit is contained in:
2025-04-13 12:25:05 -04:00
parent c5d2ace3d5
commit 18ac5ddc28
3 changed files with 33 additions and 30 deletions
@@ -2,11 +2,17 @@ import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
import './controls/player-controls';
import './seekbar/seek-bar';
import '@go/player/Player';
import '@shoelace-style/shoelace/dist/components/icon/icon.js';
const audioPlayer = () => html`
<div>
<player-controls></player-controls>
<seek-bar></seek-bar>
<div style="width: 50%">
<seek-bar></seek-bar>
</div>
<sl-icon name="alarm"></sl-icon>
</div>
`;