blob: 0ddf46f9735c872097b61b17466d385894881741 (
plain)
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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qooxdoo » Demo</title>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
<![endif]-->
<script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
<script type="text/javascript" src="../../script/layout.js"></script>
<div id="demoDescription">
<p>This test is using multiple qx.ui.basic.Terminator</p>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
var d = qx.ui.core.ClientDocument.getInstance();
var w, s;
for (var i=1; i<=20; i++)
{
s = new Date().valueOf();
for (var j=1; j<=20; j++)
{
var w = new qx.ui.basic.Terminator;
w.setWidth(12);
w.setHeight(12);
w.setLeft(20+(12*i));
w.setTop(48+(12*j));
w.setBackgroundColor(new qx.renderer.color.Color(Math.round(20+(i*j)/2)));
d.add(w);
};
// this.debug("Col: " + ((new Date).valueOf()-s) + "ms");
};
});
</script>
</body>
</html>
|