2024-09-02 02:10:42 -04:00
|
|
|
<!-- require APlayer -->
|
2024-09-03 23:06:24 -04:00
|
|
|
<link rel="stylesheet" href="/css/APlayer.css">
|
2024-09-02 02:10:42 -04:00
|
|
|
<script src="/js/APlayer.min.js"></script>
|
|
|
|
|
|
|
|
<div id="aplayer"></div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
const ap = new APlayer({
|
|
|
|
container: document.getElementById('aplayer'),
|
|
|
|
|
|
|
|
{{ with .Get "fixed" }}
|
|
|
|
fixed: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "mini" }}
|
|
|
|
mini: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "autoplay" }}
|
|
|
|
autoplay: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "cover" }}
|
|
|
|
cover: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "theme" }}
|
|
|
|
theme: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "loop" }}
|
|
|
|
loop: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "order" }}
|
|
|
|
order: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "preload" }}
|
|
|
|
preload: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "volume" }}
|
|
|
|
volume: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "mutex" }}
|
|
|
|
mutex: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "lrc-type" }}
|
|
|
|
lrcType: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "lrc-folded" }}
|
|
|
|
listFolded: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "list-max-height" }}
|
|
|
|
listMaxHeight: {{- . -}},
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Get "storage-name" }}
|
|
|
|
storageName: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
audio: [
|
|
|
|
{{- range $i, $v := split ($.Get "name") "," -}}
|
|
|
|
{{ if $i}},{{ end }}
|
|
|
|
{
|
|
|
|
name: "{{ $v }}",
|
|
|
|
|
|
|
|
url: "{{ index (split ($.Get "url") ",") $i }}",
|
|
|
|
|
|
|
|
{{ with index (split ($.Get "artist") ",") $i }}
|
|
|
|
artist: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
2024-09-03 23:28:51 -04:00
|
|
|
{{ with index (split ($.Get "cover") ",") $i }}
|
|
|
|
cover: "{{ . }}",
|
|
|
|
{{ end }}
|
|
|
|
|
2024-09-02 02:10:42 -04:00
|
|
|
{{ with index (split ($.Get "lrc") ",") $i }}
|
|
|
|
lrc: "{{ . }}"
|
|
|
|
{{ end }}
|
|
|
|
}
|
|
|
|
{{- end -}}
|
|
|
|
]
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// You can call Aplayer APIs directly in your inner shortcodes.
|
|
|
|
{{ .Inner | safeJS }}
|
|
|
|
</script>
|