window.runColorAnimation = function() {
const [from_r, from_g, from_b] = getFromColor();
const [to_r, to_g, to_b] = getToColor();
function setBlockColor(r, g, b) {
document.getElementById('block7').style.setProperty('background-color', `rgb(${r}, ${g}, ${b})`)
}
const duration = parseInt(document.getElementById('dur7').value) * 1000;
const animationStarted = performance.now();
function step() {
const currentTime = performance.now();
const pct = (currentTime - animationStarted) / duration;
const r = from_r + pct * (to_r - from_r);
const g = from_g + pct * (to_g - from_g);
const b = from_b + pct * (to_b - from_b);
setBlockColor(r, g, b);
if(currentTime < animationStarted + duration) { requestAnimationFrame(step); }
document.getElementById('pct7').textContent = (100 * pct).toFixed(2)+'%';
}
requestAnimationFrame(step);
}