-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdebug.html
More file actions
74 lines (74 loc) · 3.24 KB
/
debug.html
File metadata and controls
74 lines (74 loc) · 3.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="keywords" content="GUI design,GUI builder,web UI,RAD,RIA,development tool,multi-platform,cross-platform,web app" />
<meta name="description" content="Powered by CrossUI Front-End Builder - Create Interactive Front-End Without Coding" />
<meta name="copyright" content="copyright@crossui.com" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1,
width=device-width, height=device-height" />
<meta http-equiv="no-cache">
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="content-type" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="-1"/>
<style type="text/css">
@keyframes amf{
0%{opacity:.3;}
60%{opacity:1;}
100%{opacity:.3;}
}
@-moz-keyframes amf{
0%{opacity:.3;}
60%{opacity:1;}
100%{opacity:.3;}
}
@-webkit-keyframes amf{
0%{opacity:.3;}
60%{opacity:1;}
100%{opacity:.3;}
}
@-o-keyframes amf{
0%{opacity:.3;}
60%{opacity:1;}
100%{opacity:.3;}
}
#loadingimg {
opacity:.3;
animation:amf 2s linear infinite;
-moz-animation:amf 2s linear infinite;
-webkit-animation:amf 2s linear infinite;
-o-animation:amf 2s linear infinite;
}
</style>
<title>Powered by CrossUI Front-End Builder</title>
</head>
<body>
<div id="frame" style='position:relative;width:352px;height:704px;margin:0 auto;background-size:cover;background-image:url(img/frame2.png)'>
<div id='content' class='xui-cursor-touch' style='position:absolute;top: 88px;left:27px;width:298px;height:530px;'>
<img id="loadingimg" alt="Loading..." title="Loading..." style="padding-top:20px;" src="img/logo.png" />
</div>
</div>
</body>
</html>
<script type="text/javascript">
if(/#.*touch\=(1|true)/.test(location.href))window.xui_ini={fakeTouch:1};
document.body.className +=" xui-cursor-touch";
</script>
<script type="text/javascript" src="//www.crossui.com/libs/2.0/js/xui-debug.js"></script>
<script type="text/javascript">
var args = xui.getUrlParams(),
onEnd = function(){xui('loading').remove();};
if(args&&args.ficdn){
xui.ini.$FontIconsCDN=args.ficdn;
}
if(args&&args.cls){
xui.launch(args.cls, onEnd, args && args.lang||'', args && args.theme||'webflat',null,xui('content'));
document.title += " [" + args.cls + "]";
}else{
xui.launch('App/js/index.js', onEnd, args && args.lang||'', args && args.theme||'webflat',null,xui('content'));
}
</script>