forked from monksoul/Layx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe.html
More file actions
53 lines (48 loc) · 1.44 KB
/
iframe.html
File metadata and controls
53 lines (48 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1,minimum-scale=1,user-scalable=no" />
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1">
<title>Layx 新一代Web弹窗组件 v2.5.4</title>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
line-height: 1.5;
}
body {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
-moz-align-items: center;
-ms-align-items: center;
-o-align-items: center;
-webkit-justify-content: center;
justify-content: center;
-ms-justify-content: center;
-moz-justify-content: center;
-o-justify-content: center;
}
label {
font-size: 90px;
font-family: Arial, Helvetica, sans-serif;
color: #444;
margin-top: -30px;
}
</style>
</head>
<body>
<label>Layx</label>
<script type="text/javascript">
function iframeFunc() {
alert("我是iframe.html 页面的 iframeFunc 方法");
}
</script>
</body>
</html>