Add js and css integration

This commit is contained in:
2026-04-23 15:08:45 +02:00
parent 0ee598fbdd
commit cfa72be700
8 changed files with 1595 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
const colors = ['#ff6b6b', '#4ecdc4', '#45b7d1', '#96ceb4', '#ffeaa7', '#dda0dd'];
let current = 0;
setInterval(() => {
current = (current + 1) % colors.length;
document.body.style.backgroundColor = colors[current];
}, 1000);
window.test = function(world) {
console.log('Hello, ' + world + '!');
}