-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 947 Bytes
/
index.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
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Birthday</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<style>
.iframepage {
-webkit-overflow-scrolling: touch;
overflow-x: scroll;
overflow-y: hidden;
}
::-webkit-scrollbar {
width: 0px;
}
/*局部滚动的dom节点*/
.scroll-el {
overflow: auto;
}
</style>
<body>
<iframe src="./html/login.html" id="iframepage" scrolling="no" onload="changeFrameHeight()" frameborder="0"
style="width:100%" marginwidth="0" marginheight="0"></iframe>
<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
<script src="js/jquery-1.8.4.min.js" type="text/javascript"></script>
</body>
</html>