just commit

This commit is contained in:
santic-zombie
2020-04-06 00:04:44 +03:00
parent b512cec38d
commit b7be7880f7
3 changed files with 13 additions and 5 deletions

View File

@@ -133,8 +133,17 @@ h1 {
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
margin: auto; margin: auto;
justify-content : center;
} }
/*
.muteEl {
margin: auto;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}
*/
DIV { DIV {
text-align: center text-align: center

View File

@@ -61,11 +61,11 @@
<br> <br>
<div> <div class="volume-wrap">
<button id="mute" class="mute_btn"> <button id="mute" class="mute_btn muteEl">
<i class="fas fa-volume-up"></i> <i class="fas fa-volume-up"></i>
</button> </button>
<input id="volume" type="range" class="slider" min="0" max="10" value="1" step="0.1" /> <input id="volume" type="range" class="slider muteEl" min="0" max="10" value="1" step="0.1" />
</div> </div>
<div id="jGrowl"></div> <div id="jGrowl"></div>

View File

@@ -23,7 +23,6 @@ function show()
// Получение информации из файла // Получение информации из файла
var array = temp.toString().split("\n"); var array = temp.toString().split("\n");
// .replace - удаление пробелов в начале и конце строки
MPDartist = array[0]; MPDartist = array[0];
MPDsong = array[1]; MPDsong = array[1];
MPDfile = array[2].replace(/^vk_kun\//,'').replace(/\.mp3/,''); MPDfile = array[2].replace(/^vk_kun\//,'').replace(/\.mp3/,'');