🎈启航
小小金克斯为你加油,去创作自己的博客系统吧
🎉有趣的代码
(function shakePage() {
const shakeInterval = setInterval(function() {
const randomX = Math.floor(Math.random() * 21) - 10;
const randomY = Math.floor(Math.random() * 21) - 10;
document.body.style.transform = 'translate(' + randomX + 'px, ' + randomY + 'px)';
}, 50);
setTimeout(function() {
clearInterval(shakeInterval);
alert('哈哈哈,有趣的JS代码')
document.body.style.transform = 'translate(0, 0)';
}, 3000); // 3秒后停止
})()
三体人
可以让宇宙为汪淼闪烁,当然我不可以,但我可以让网页为你闪烁
复制上面的代码,然后点击F12
或者右键选择检查
,然后你就可以看到控制台
,然后把它粘贴进去,点击回车↩️
哈哈哈,网页是不是为你闪烁了!