Bonjour à tous,

Je suis un nouvel inscrit et j'espère que quelqu'un pourra m'éclairer... Et bien sûre, je vais suivre un peu vos topic et si je peux à mon tour aider quelqu'un !!

J'ai un nouvel outil de déploiement pour terminaux mobile que je maitrise pas mal après un certain temps d'adaptation.

Mon soucis est que pour le mode kiosk, je dois créer un template html pour l'incrustation des icône provenant de nos dev.

J'en ai créé un, qui est, pour un débutant, plutôt pas mal.

Le souci est que cet écran ne contient qu'une seule page. J'aimerais en avoir 2, comme le launcher classique android (2,3,4 pages à volonté).

2 me suffit, une pour les apps prod et l'autre pour les apps tests.

Ça ne devrait pas être très compliqué mais comme cité plus haut, je suis débutant sur ce sujet... J'imagine qu'avec quelques balises et lignes supplémentaires ça devrait le faire mais je cale...

Voici mon template une page :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
 
 
<head>
 
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
	<title>Android/Desktop Lockdown</title>
	<style type="text/css">
                html,
                body {
                        height: 80%;
                        position: fixed;
                        background: url('/sdcard/tulip2.jpg') no-repeat center center fixed;
                        -webkit-background-size: cover;
                        -moz-background-size: cover;
                        -o-background-size: cover;
                        background-size: cover;
 
                }
 
                body {
                        margin: 4px 4px 0px 4px;
 
                }
 
                #wrapper {
                        min-height: 100%;
                        height: auto !important;
                        height: 100%;
                        margin: 0 auto -4em;
                }
 
                #Header {
                        background: url('<MCImg_BkgHeaderRepeat.png>') repeat-x;
                        height: 71px;
                        width: 100%;
                }
 
                #Header .lockicon {
                        background: url('<MCImg_HeaderLock.png>') no-repeat;
                        width: 69px;
                        height: 71px;
                        float: left;
                        position: absolute;
                }
 
                #Header .Title {
                        font: bold 30px arial, sans-serif;
                        text-align: center;
                        line-height: 71px;
                        color: #fff;
                        margin-left: 69px;
                        display: block;
                }
 
                #Main {
                        text-align: center;
                        margin: 4px 0 100px;
                        align: center;
                        position-absolute: 20px;
                }
 
                #Main .row {
                        display: table;
                        white-space: wrap;
                        margin: 0px auto;
                }
 
                #Main .row ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        display: table-row;
                        white-space: wrap;
                }
 
                #Main .row ul br {
                        clear: both;
                }
 
                #Main .row ul li {
                        width: 66px;
                        height: 60px;
                        padding: 1px;
                        /* border: 2px #666666 solid; */
                        margin: 2px 8px 2px 0px;
                        vertical-align: middle;
                        text-align: center;
                        position: relative;
                        display: table-cell;
                        float: left
                }
 
                #Main .row ul li img {
                        color: #FFF border: 10;
                        border-color: #FFF width: 35px;
                        height: 35px;
                        padding: 2px;
 
                }
 
                #Main .row ul li .txt {
                        color: #000;
                        font: bold 10px arial, sans-serif;
                }
 
                #Footer {
                        font: bold 30px arial, sans-serif;
                        color: #fff;
                        position: fixed;
                        bottom: 0;
                        margin: 0;
                        padding: 0;
                        width: 100%;
                        height: 57px;
                }
 
                /* IE7+ fix */
                html>body #Footer {
                        margin: 0 0 0 -4px;
                        padding: 0 4px;
                }
 
                #Footer .FooterContainer {
                        margin: 0;
                        display: block;
                        overflow: hidden;
                        height: 57px;
                        line-height: 57px;
                        background: url('<MCImg_BkgFooterRepeat.jpg>') repeat-x;
                }
 
                /* IE7+ fix */
                html>body #Footer .FooterContainer {
                        margin: 0 8px 0 0;
                }
 
                #Footer .FooterContainer .FooterBg {
                        background: url('<MCImg_poweredbysoti.jpg>') no-repeat;
                        width: 426px;
                        height: 57px;
                        float: right;
                }
 
                #Footer,
                .push {
                        height: 2em;
                        height: 57px \0/;
                }
        </style>
	<!--[if lt IE 8]>
<style type="text/css">
#Main .row ul {display:inline-block;}
#Main .row ul{display:inline; }
#Main .row ul li{display:inline-block}
#Main .row ul li{ display:inline;}
#Main .row ul a{ display:inline-block;}
#Main{text-align:center}
</style>
<![endif]-->
</head>
 
<body>
	<div id="Main">
		<div class="row">
			<ul margin-left: 20px>
				<!-- To display the image for the item rather than use the EXE icon use this line instead
                <li><A href ="<MCLink0>"><img src="<MCDispImg0>" /><div class="txt"><MCDISP0></div></a></li>-->
				<li><A href="<MCLink0>"><img src="<MCExeIcon0>" onerror="this.style.display='none'" /><div class="txt"><MCDISP0></div></a></li>
                <li><A href="<MCLink1>"><img src="<MCExeIcon1>" onerror="this.style.display='none'" /><div class="txt"><MCDISP1></div></a></li>
                <li><A href="<MCLink2>"><img src="<MCExeIcon2>" onerror="this.style.display='none'" /><div class="txt"><MCDISP2></div></a></li>
				<li><A href="<MCLink3>"><img src="<MCExeIcon3>" onerror="this.style.display='none'" /><div class="txt"><MCDISP3></div></a></li>
			</ul>
			<ul>
                <li><A href="<MCLink4>"><img src="<MCExeIcon4>" onerror="this.style.display='none'" /><div class="txt"><MCDISP4></div></a></li>
                <li><A href="<MCLink5>"><img src="<MCExeIcon5>" onerror="this.style.display='none'" /><div class="txt"><MCDISP5></div></a></li>
                <li><A href="<MCLink6>"><img src="<MCExeIcon6>" onerror="this.style.display='none'" /><div class="txt"><MCDISP6></div></a></li>
				<li><A href="<MCLink7>"><img src="<MCExeIcon7>" onerror="this.style.display='none'" /><div class="txt"><MCDISP7></div></a></li>
            </ul>
				<ul>
                <li><A href="<MCLink8>"><img src="<MCExeIcon8>" onerror="this.style.display='none'" /><div class="txt"><MCDISP8></div></a></li>
                <li><A href="<MCLink9>"><img src="<MCExeIcon9>" onerror="this.style.display='none'" /><div class="txt"><MCDISP9></div></a></li>
                <li><A href="<MCLink10>"><img src="<MCExeIcon10>" onerror="this.style.display='none'" /><div class="txt"><MCDISP10></div></a></li>
				<li><A href="<MCLink11>"><img src="<MCExeIcon11>" onerror="this.style.display='none'" /><div class="txt"><MCDISP11></div></a></li>
            </ul>
			<ul>
				<li><A href="<MCLink12>"><img src="<MCExeIcon12>" onerror="this.style.display='none'" /><div class="txt"><MCDISP12></div></a></li>
			    <li><A href="<MCLink13>"><img src="<MCExeIcon13>" onerror="this.style.display='none'" /><div class="txt"><MCDISP13></div></a></li>
			    <li><A href="<MCLink14>"><img src="<MCExeIcon14>" onerror="this.style.display='none'" /><div class="txt"><MCDISP14></div></a></li>
				<li><A href="<MCLink15>"><img src="<MCExeIcon15>" onerror="this.style.display='none'" /><div class="txt"><MCDISP15></div></a></li>
			</ul>
			<ul>
				<li><A href="<MCLink16>"><img src="<MCExeIcon16>" onerror="this.style.display='none'" /><div class="txt"><MCDISP16></div></a></li>
				<li><A href="<MCLink17>"><img src="<MCExeIcon17>" onerror="this.style.display='none'" /><div class="txt"><MCDISP17></div></a></li>
				<li><A href="<MCLink18>"><img src="<MCExeIcon18>" onerror="this.style.display='none'" /><div class="txt"><MCDISP18></div></a></li>
				<li><A href="<MCLink19>"><img src="<MCExeIcon19>" onerror="this.style.display='none'" /><div class="txt"><MCDISP19></div></a></li>
			</ul>
 
 
</div>
 
</div>
</body>
</html>


J'espère que quelqu'un pourra m'aider !!!

Merci d'avance !!