-
Notifications
You must be signed in to change notification settings - Fork 4
/
quickView.html
42 lines (39 loc) · 1.16 KB
/
quickView.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
<!doctype html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" />
<meta name="renderer" content="webkit" />
<meta name="force-rendering" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<style type="text/css">
.main {
text-align: center;
/*让div内部文字居中*/
font-weight: lighter;
font-family: Roboto;
border-radius: 20px;
width: 300px;
height: 350px;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/mdui.min.css"/>
<title>OIso - 快速预览 | QuickView</title>
</head>
<body class="mdui-theme-layout-auto">
<table width="100% " height="100% " align="center ">
<div class="main">
<h3>将鼠标悬浮在一切链接上,<br>进行快速预览!</h3>
<br>
<h5>TIP: 部分网站禁止了 iframe 引用,会导致显示失败!</h5>
</div>
</table>
<script src="https://unpkg.com/[email protected]/dist/js/mdui.min.js"></script>
</body>
</html>