This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/web/2_sem/javascript/day_3/task_2.js

13 lines
262 B
JavaScript

var value = 1.0;
var titleSize = 10;
function changeOpacity(){
if (value >= 0.00) {
value = value - 0.05;
var over = document.getElementById("over");
over.style.opacity = value;
over.style.backgroundColor = "green";
}
}