41 lines
795 B
HTML
41 lines
795 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
#about {
|
|
height: 2000px;
|
|
background: red;
|
|
transition: all ease 3s;
|
|
}
|
|
|
|
#joinme {
|
|
height: 2000px;
|
|
background: blue;
|
|
transition: all ease 3s;
|
|
|
|
}
|
|
|
|
#connect {
|
|
height: 2000px;
|
|
background: yellow;
|
|
transition: all ease 3s;
|
|
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<a href="#about">关于我</a>
|
|
<a href="#connect">联系</a>
|
|
<a href="#joinme">加入我们</a>
|
|
|
|
<div id="about"></div>
|
|
<div id="joinme"></div>
|
|
<div id="connect"></div>
|
|
|
|
</body>
|
|
</html> |