-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdanamic-website.html
64 lines (59 loc) · 2.34 KB
/
danamic-website.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS3平滑动态页面</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Josefin+Slab:400,700">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="st-container">
<!--nav begin-->
<input type="radio" name="radio-set" checked="checked" id="st-control-1" />
<a href="#st-panel-1">Serendipity</a>
<input type="radio" name="radio-set" id="st-control-2" />
<a href="#st-panel-2">Happiness</a>
<input type="radio" name="radio-set" id="st-control-3" />
<a href="#st-panel-3">Tranquillity</a>
<input type="radio" name="radio-set" id="st-control-4" />
<a href="#st-panel-4">Positivity</a>
<input type="radio" name="radio-set" id="st-control-5" />
<a href="#st-panel-5">Passion</a>
<!--nav end-->
<div class="st-scroll">
<section class="st-panel" id="st-panel-1">
<div class="st-desc" data-icon="H"></div>
<h2>Serendipity</h2>
<p>Life is a journey, not the destination,
but the scenery along the should be and the mood at the view.</p>
</section>
<section class="st-panel st-color" id="st-panel-2">
<div class="st-desc" data-icon="2"></div>
<h2>Happiness</h2>
<p>Time goes by so fast, people go in and out of your life.
You must never miss the opportunity to tell these people how much they mean to you.</p>
</section>
<section class="st-panel" id="st-panel-3">
<div class="st-desc" data-icon="B"></div>
<h2>Tranquillity</h2>
<p>No matter how bad your heart has been broken, the world doesn’t stop for your grief.
The sun comes right back up the next day.</p>
</section>
<section class="st-panel st-color" id="st-panel-4">
<div class="st-desc" data-icon="3"></div>
<h2>Positivity</h2>
<p>I’ll think of you every step of the way.</p>
</section>
<section class="st-panel" id="st-panel-5">
<div class="st-desc" data-icon="C"></div>
<h2>Passion</h2>
<p>You may be out of my sight, but never out of my mind.</p>
</section>
</div>
</div>
</div>
</body>
</html>