Hugo Hexo 添加音乐播放器

直接上代码,就完事了 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 <!DOCTYPE html> <html> <body> <style> .parent { margin-top:25px; position: relative; } .parent .child { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width:100%; } </style> <div class="parent"> <audio controls class="child"> <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio> </div> </body> </html>

三月 13, 2023 · 1 分钟 · 72 字 · HCY