Skip to content

被删去的内容

Orangii edited this page Apr 23, 2021 · 1 revision

为什么有这个页面

因为有些内容是专门写出来娱乐的,并不一定对所有用户有用,因此就移出了哪些可能有意思的东西。

如果你也想要这些内容,可以在本页面找到它们,如果没找到,请提交Issue让我看到。

猫猫探头~

在上线版中是这样的:

Cat poping

具体实现代码:在/assets/css/main.css中添加

#main::before{
	content: "";
	display: grid;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url([ImageURL]) no-repeat center;
	width: 100%;
	height: 300px;
	opacity: 0.45;
	transform: translate(0,105px) scale(0.4,0.4);
	z-index: -1;
}

其中参数[ImageURL]替换成自己的URL,height换成图片高度,透明度opacity自己调,transform自己看着搞就好,其余不变就行。