//Функция прерывания трека
$(function() {
$('audio').on('play', function() {
$('audio').addClass('stoped').removeClass('playing');
$(this).removeClass('stoped').addClass('playing');
$('.stoped').each(function() {
$(this).trigger('pause');
}) }) });
//Регулировка громкости
$('#rec166116037').addClass('speaker');
$(".tn-atom__form").on('change', 'input[name="Range"]', function() {
var findVol = $(this).val(); $('audio').prop("volume", findVol/100);
});
$(".playbtnbg").click(function(e){e.preventDefault();$('.speaker').fadeIn(500);});
$(".stopbtnbg").click(function(e){e.preventDefault();$('.speaker').fadeOut(500);});
$("audio").on("ended", function() {
$('.playbtnbg').removeClass('hide-buton');
});
});