-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
32 lines (30 loc) · 911 Bytes
/
demo.html
File metadata and controls
32 lines (30 loc) · 911 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PC端全屏切换效果</title>
<style type="text/css">
h1,body,html{margin:0; padding: 0;}
body{font-family:Arial,"Microsoft YaHei","Hiragino Sans GB",sans-serif;}
h1{font-size: 6em; font-weight: normal;}
p{font-size: 2em; margin:0.5em 0 2em 0;}
html,body{height: 100%;}
#container,.section{height: 100%; overflow: hidden;}
#section0{background-color: #cee;}
#section1{background-color: red;}
#section2{background-color: green;}
#section3{background-color: #ccc;}
#container{width:400%;}
.section{width: 25%;}
.left{float: left;}
</style>
</head>
<body>
<div id="container" class="left">
<div class="section left" id="section0"></div>
<div class="section left" id="section1"></div>
<div class="section left" id="section2"></div>
<div class="section left" id="section3"></div>
</div>
</body>
</html>