mirror of
https://github.com/torappinfo/uweb.git
synced 2025-01-15 08:31:00 +01:00
11 lines
273 B
HTML
11 lines
273 B
HTML
<div id="dplayer"></div>
|
|
<script src="https://fastly.jsdelivr.net/npm/dplayer/dist/DPlayer.min.js"></script>
|
|
<script>
|
|
const dp = new DPlayer({
|
|
container: document.getElementById('dplayer'),
|
|
video: {
|
|
url: location.search.substring(3),
|
|
},
|
|
});
|
|
</script>
|