stare_case_to_heaven/sky.js
2020-12-02 14:21:10 +01:00

24 lines
No EOL
685 B
JavaScript

(function () {
const canvas = document.getElementById("canvas");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
canvas.onclick = () => {
canvas.requestFullscreen().then();
};
window.onresize = () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
};
let start_timestamp = 0, angle = 0,
step = function (timestamp) {
angle = ((timestamp - start_timestamp) / 100) % 360;
canvas.style.background = 'linear-gradient(' + angle + 'deg, white , rgb(20,56,200))';
requestAnimationFrame(step);
};
requestAnimationFrame(step);
})()