-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (72 loc) · 2.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<title>Ajax Without Refresh</title>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Boostrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- CSS for web pages -->
<link type="text/css" href="assets/css/style.css" rel="stylesheet" />
<!-- CSS for Icons -->
<link href="https://cdn.materialdesignicons.com/5.7.55/css/materialdesignicons.min.css" rel="stylesheet" />
</head>
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<body>
<button id="btnReloadTable" class="refresher">Refresh table</button>
<table id="dynamic-table" class="table">
<thead>
<tr>
<th scope="col">#</th>
<th>Artiste - Titre</th>
<th>Artiste de l'édit/remix</th>
<th>Type d'édit (Remix / Bootleg/ Redrum etc...)</th>
<th>Durée</th>
<th>BPM</th>
<th>Clé</th>
<th>Action</th>
<th>Date d'ajouts</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<!-- MUSIC PLAYER -->
<div class="bottom-player" id="container-mp3">
<figure>
<figcaption id="mp3-infos">Title of tracks</figcaption>
<div id="mp3-progress-bar-container" class="progress">
<div id="mp3-progress-bar" class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<input id="btn-play-pause" type="button" value="Play" />
<label for="formControlRange">Volume</label>
<input id="mp3-volume" type="range" class="form-control-range" id="formControlRange">
<audio controls preload="auto" itemprop="audio" id="audioplayer"
src="assets/mp3/Lauv - I Like Me Better (Collini Twerkahton Bootleg).mp3">
Your browser does not support the
<code>audio</code> element.
</audio>
</figure>
</div>
<!-- FIN MUSIQUE PLAYER -->
<!-- Script ID3 (JavaScript-ID3-Reader by António Afonso [aadsm]) -->
<script src="assets/js/mp3tag.min.js"></script>
<!-- MP3 Script -->
<script src="assets/js/script.js"></script>
<!-- JS Script for Boostrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
<script type="text/javascript">
// BTN To reload table
</script>
</body>
</html>