forked from parlay96/pl-drag-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 2.19 KB
/
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
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--声明IE使用edge渲染,最高级别的IE内核 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!--
width:可视区域的宽度,值可为数字或关键词device-width
height:同width
intial-scale:页面首次被显示是可视区域的缩放级别,取值1.0则页面按实际尺寸显示,无任何缩放
maximum-scale=1.0, minimum-scale=1.0;可视区域的缩放级别,
maximum-scale用户可将页面放大的程序,1.0将禁止用户放大到实际尺寸之上。
user-scalable:是否可对页面进行缩放,no 禁止缩放
-->
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=1">
<!--控制几款双核浏览器的渲染核心为webkit-->
<meta name="renderer" content="webkit">
<!--清除页面缓存-->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<link rel="shortcut icon" type="image/x-icon" href="static/icon.ico" rel="external nofollow" />
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!--使用了iconfont字体图标-->
<link rel="stylesheet" href="//at.alicdn.com/t/font_1180866_f9i4j0cbm15.css"/>
<title>pl-drag-template可视化编辑器</title>
<script type="text/javascript">
// 判断IE10
if ( /*@cc_on!@*/ false ) {
document.documentElement.className += ' ie10'
}
console.log("%cauthor: penglei, 博客站https://www.cnblogs.com/plBlog, 一个h5可视化编辑器种子, 高仿凡科建站模板!"," text-shadow: 0 1px 0 #ccc,0 2px 0 #c9c9c9,0 3px 0 #bbb,0 4px 0 #b9b9b9,0 5px 0 #aaa,0 6px 1px rgba(0,0,0,.1),0 0 5px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.3),0 3px 5px rgba(0,0,0,.2),0 5px 10px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.2),0 20px 20px rgba(0,0,0,.15);font-size:1.8em;");
</script>
</head>
<body>
<div id="app"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://unpkg.com/[email protected]/lib/index.js"></script>
<!-- built files will be auto injected 生成的文件将自动注入 -->
</body>
</html>