1
0
Fork 0
owenryan.us/source/assets/landingpage.js

14 lines
488 B
JavaScript
Raw Normal View History

2023-05-15 23:59:18 -04:00
// JS Code that rotates the gradient on the content box on the front page
document.addEventListener("DOMContentLoaded", function () {
2024-02-05 23:13:57 -05:00
var mainBox = document.querySelector("#rotating-gradient");
var angle = 0;
2023-05-15 23:59:18 -04:00
// Rotate the gradient 1 degree every 100ms
setInterval(function () {
2024-02-05 23:13:57 -05:00
mainBox.style.background = "linear-gradient(".concat(angle, "deg, #1E1F46, #404040)");
2023-05-15 23:59:18 -04:00
angle += 1;
if (angle >= 360) {
angle = 0;
}
}, 100);
});