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
|
<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">
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
var d = qx.ui.core.ClientDocument.getInstance();
var icons = [ "clock", "colors", "date", "folder", "locale", "penguin" ];
var sizes = [ 16, 22, 32, 48, 64, 48, 32, 22, 16 ];
var atom;
var toppos = 48;
for (var j=0; j<sizes.length; j++)
{
for (var i=0; i<icons.length; i++)
{
atom = new qx.ui.basic.Atom("Atom " + (i+1) + "." + (j+1), "icon/" + sizes[j] + "/" + icons[i] + ".png");
atom.setTop(toppos);
atom.setLeft(20 + (120 *i));
d.add(atom);
};
toppos += sizes[j] + 20;
};
});
</script>
</body>
</html>
|