diff options
author | amzrk2 | 2020-04-24 14:40:24 +0800 |
---|---|---|
committer | amzrk2 | 2020-04-24 14:40:24 +0800 |
commit | b3193728737dc4fd51a3f1eb9ccd00c1d9feb21f (patch) | |
tree | 946c14bd656e8ee85ef398f2fab488cd97315b8b /layouts/partials | |
parent | 60262f7365898d0d54550da8e679064350814d1b (diff) | |
download | hugo-theme-fuji-b3193728737dc4fd51a3f1eb9ccd00c1d9feb21f.tar.gz hugo-theme-fuji-b3193728737dc4fd51a3f1eb9ccd00c1d9feb21f.tar.bz2 hugo-theme-fuji-b3193728737dc4fd51a3f1eb9ccd00c1d9feb21f.zip |
Adjust default APlayer volume
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/scripts.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/scripts.html b/layouts/partials/scripts.html index fd5aa3b..85346f2 100644 --- a/layouts/partials/scripts.html +++ b/layouts/partials/scripts.html @@ -31,7 +31,7 @@ const postAPlayer = new APlayer({ container: document.getElementById("post-aplayer"), theme: "#8F82BC", - volume: 0.25, + volume: 0.1, audio: [{ name: "{{ $.Params.playerName }}", artist: "{{ $.Params.playerArtist }}", @@ -49,7 +49,7 @@ container: document.getElementById("aplayer"), fixed: true, theme: "#8F82BC", - volume: 0.25, + volume: 0.1, audio: [{ name: "{{ $.Site.Params.playerName }}", artist: "{{ $.Site.Params.playerArtist }}", |