<button class="send" id="submit_button" onclick="fillButton()">Записать</button>
function fillButton() {
var button = document.getElementById('submit_button');
var color = 'green';
var animationDuration = 2000; // Длительность анимации в миллисекундах
var currentWidth = 0;
var targetWidth = button.offsetWidth;
var intervalId = setInterval(function() {
if (currentWidth >= targetWidth) {
clearInterval(intervalId);
return;
}
currentWidth += 1;
button.style.background = linear-gradient(to right, ${color} ${currentWidth}px, transparent ${currentWidth}px);
}, animationDuration / targetWidth);
}
button.style.background = linear-gradient(to right, ${color} ${currentWidth}px, transparent ${currentWidth}px);
button.style.background = `linear-gradient(to right, ${color} ${currentWidth}px, transparent ${currentWidth}px)`;