纯CSS实现的温馨可爱的404找不到
你希望创建一个使用纯 CSS 实现的 404 页面,并且这个页面要给人一种温馨可爱的感觉。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> 页面走丢啦</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="error-page">
<h1 class="title">Oops! 页面走丢啦~</h1>
<p class="description">你访问的页面好像迷路了,不如换个关键词搜索试试?</p>
<a href="/" class="button">返回首页</a>
</div>
</body>
</html>
CSS
body {
font-family: 'Comic Sans MS', cursive;
background-color: #f8f8f8;
text-align: center;
}
.error-page {
margin: 100px auto;
text-align: center;
}
.title {
font-size: 48px;
color: #f05050;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
animation: bounce 1s infinite;
}
.description {
font-size: 24px;
color: #666;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
}
/* 动画效果 */
@keyframes bounce {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
通过以上方法,你可以轻松创建一个温馨可爱的 404 页面,给用户留下良好的印象。
如果你有更具体的需求,例如想添加特定的元素或动画效果,欢迎提出。
例如,你可以问:
我将竭诚为你解答!