以下是优化后的完整 js 代码,将代码插入到你的网页中即可看到效果! 代码中的图片地址可能后续会失效,建议保存到本地使用。
!function() {
var bottom = Math.floor(60 * Math.random()),
right = Math.floor(50 * Math.random()),
rotate = Math.floor(360 * Math.random());
var foolsEgg = document.createElement("img");
foolsEgg.src = "https://tu.eebk.com/item/64c533441ddac507cc18cbe4.webp";
foolsEgg.style.position = "fixed";
foolsEgg.style.bottom = "".concat(bottom, "%");
foolsEgg.style.right = "".concat(right, "%");
foolsEgg.style.zIndex = "9999";
foolsEgg.style.pointerEvents = "none";
foolsEgg.style.width = "40%";
foolsEgg.style.maxWidth = "190px";
foolsEgg.style.transform = "".concat("rotate(", rotate, "deg)");
document.body.append(foolsEgg);
} ();
The End