]> git.proxmox.com Git - extjs.git/blame - extjs/examples/modern/stockapp/index.html
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / modern / stockapp / index.html
CommitLineData
6527f429
DM
1<!DOCTYPE HTML>\r
2<html manifest="" lang="en-US">\r
3<head>\r
4 <meta charset="UTF-8">\r
5 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">\r
6 <title>StockApp</title>\r
7 <style type="text/css">\r
8 /**\r
9 * Example of an initial loading indicator.\r
10 * It is recommended to keep this as minimal as possible to provide instant feedback\r
11 * while other resources are still being loaded for the first time\r
12 */\r
13 html, body {\r
14 height: 100%;\r
15 background-color: #1985D0\r
16 }\r
17\r
18 #appLoadingIndicator {\r
19 position: absolute;\r
20 top: 50%;\r
21 margin-top: -15px;\r
22 text-align: center;\r
23 width: 100%;\r
24 height: 30px;\r
25 -webkit-animation-name: appLoadingIndicator;\r
26 -webkit-animation-duration: 0.5s;\r
27 -webkit-animation-iteration-count: infinite;\r
28 -webkit-animation-direction: linear;\r
29 }\r
30\r
31 #appLoadingIndicator > * {\r
32 background-color: #FFFFFF;\r
33 display: inline-block;\r
34 height: 30px;\r
35 -webkit-border-radius: 15px;\r
36 margin: 0 5px;\r
37 width: 30px;\r
38 opacity: 0.8;\r
39 }\r
40\r
41 @-webkit-keyframes appLoadingIndicator{\r
42 0% {\r
43 opacity: 0.8\r
44 }\r
45 50% {\r
46 opacity: 0\r
47 }\r
48 100% {\r
49 opacity: 0.8\r
50 }\r
51 }\r
52 </style>\r
53 <!-- The line below must be kept intact for Sencha Command to build your application -->\r
54 <script id="microloader" type="text/javascript" src="bootstrap.js"></script>\r
55</head>\r
56<body>\r
57 <div id="appLoadingIndicator">\r
58 <div></div>\r
59 <div></div>\r
60 <div></div>\r
61 </div>\r
62</body>\r
63</html>\r