mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
10 lines
273 B
HTML
10 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>
|