我想讓我的網(wǎng)站背景中途變色。
它應(yīng)該褪成另一種顏色。我怎么能這么做呢?
它應(yīng)該看起來像圖片,但也許有更多的過渡。
希望有人能幫忙:)
# # #不確定這是否是你需要的,因?yàn)闆]有附上圖片。
但是試試這個(gè):
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
animation: colorshift 5s infinite;
font-family: Arial, sans-serif;
}
@keyframes colorshift {
0% {background: #eee;}
50% {background: #000;}
100% {background: #eee;}
}
h1 {
color: white;
}
</style>
</head>
<body>
<h1>Welcome to my website!</h1>
</body>
</html>
下一篇Vue大型模型