just commit

master
santic-zombie 5 years ago
parent b512cec38d
commit b7be7880f7
  1. 11
      css/style.css
  2. 6
      index.html
  3. 1
      js/radio.js

@ -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

@ -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>

@ -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/,'');

Loading…
Cancel
Save