把下面的代码,复制到控制台运行,一起苏喂[吐舌]

const lighting = () => {
setTimeout(() => {

const rotate = Math.random() * 360

document.body.style = `filter: hue-rotate(${rotate}deg);`
lighting();

}, 100)
}
lighting()
展开
12