This repository was archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathtabbar-nav.html
executable file
·519 lines (519 loc) · 16.3 KB
/
tabbar-nav.html
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
<!DOCTYPE html>
<html lang="en" dir="rtl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="msapplication-tap-highlight" content="no">
<title>ChocolateChip-UI Android</title>
<link rel="stylesheet" href="../chui/chui-android-3.9.2.css">
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="../chui/chui-3.9.2.js"></script>
<script type="text/javascript">
$(function() {
var opts = {
tabs : 5,
imagePath : "../icons-ios/",
icons : ["music", "pictures", "docs", "dictionary", "more"],
labels : ["موسيقى", "الصور", "مستندات", "قاموس", "أكثر"],
selected : 1
};
$.UITabbar(opts);
});
</script>
<style>
/*
Styles for iOS tab bar.
By using the .isiOS and .isDesktopSafari classes,
we can style the tab bar icons just for Safari
without affecting the look of Android and Windows Phone 8.
*/
.isiOS .tabbar > button > .icon,
.isSafari .tabbar > button > .icon {
background-color: #929292;
-webkit-mask-position: center center;
-webkit-mask-size: 100%;
-webkit-mask-repeat: no-repeat;
}
.isiOS .tabbar > button.selected > .icon,
.isiOS .tabbar > button:hover > .icon {
background-color: #007aff;
}
.tabbar > button.music > .icon {
-webkit-mask-image: url('../images/icons/Head_phones.svg');
}
.tabbar > button.pictures > .icon {
-webkit-mask-image: url('../images/icons/Camera.svg');
}
.tabbar > button.docs > .icon {
-webkit-mask-image: url('../images/icons/Documents.svg');
}
.tabbar > button.dictionary > .icon {
-webkit-mask-image: url('../images/icons/Download.svg');
}
.grid > .col {
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
background-color: #000;
-webkit-transition: all .125s ease-out;
transition: all .125s ease-out;
}
@media only screen and (min-width: 320px) {
.grid > .col {
height: 100px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 480px) {
.grid > .col {
height: 150px;
background-size: auto 100%;
}
}
@media only screen and (max-width: 599px) {
.grid {
-wekbit-flex-direction: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.isWindows .grid {
display: flex;
}
}
@media only screen and (min-width: 640px) {
.grid > .col {
height: 200px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 768px) {
.grid > .col {
height: 250px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 1024px) {
.grid > .col {
height: 300px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 1200px) {
.grid > .col {
height: 350px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 1400px) {
.grid > .col {
height: 500px;
background-size: auto 100%;
}
}
.list > li > ul, .list > li > ol {
padding-right: 15px !important;
margin-right: 0 !important;
}
.list > li > ul > li, .list > li > ol > li {
padding-right: 0 !important;
margin-right: 0;
}
</style>
</head>
<body>
<nav class="current">
<h1>موسيقى</h1>
</nav>
<article id="music" class="current">
<section>
<h2>موسيقى</h2>
<ul class='list'>
<li class='comp'>
<aside>
<img title='Bent Osol' src="../rtl-images/arabic/Diana_Haddad_Bent_Osol.jpg" height="80px">
</aside>
<div>
<h3>ديانا حداد</h3>
<h4>بنت أصول</h4>
<p>ديانا هي أسطورة. موسيقاها يحرك الروح. ونحن لا يمكن أبدا أن نسمع ما يكفي من صوتها.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='Jaber Alkaser' src="../rtl-images/arabic/jaber_alkaser_Rasheed.jpg" height="80px">
</aside>
<div>
<h3>راشد الماجد</h3>
<h4>جبار حبك</h4>
<p>راشد الماجد هو الموسيقى العربية الكلاسيكية. وهو من أبرز المطربين.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='Aamel Aaqla' src="../rtl-images/arabic/Aamel_Aaqlah.jpg" height="80px">
</aside>
<div>
<h3>نانسي عجرم</h3>
<h4>أعمل عاقلة</h4>
<p>هي واحدة من الأغاني المفضلة لدينا من قبل نانسي.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='El Leila' src="../rtl-images/arabic/Amr_Diab-El_Leila.jpg" height="80px">
</aside>
<div>
<h3>عمرو دياب</h3>
<h4>الليلة</h4>
<p>قال انه لا يوجد لديه الخوف في خلط أحدث الأساليب العالم مع نظيره الغناء عاطفي.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='Ykhallili Albak' src="../rtl-images/arabic/Ykhallili_Albak_Najwa.jpg" height="80px">
</aside>
<div>
<h3>نجوى كرم</h3>
<h4>يخليلي قلبك</h4>
<p>نجوى لديها وسيلة فريدة من نوعها في الغناء.</p>
</div>
</li>
</ul>
</section>
</article>
<nav class='next'>
<h1>الصور</h1>
</nav>
<article id='pictures' class='next'>
<section>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-01.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-02.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-03.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-04.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-05.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-06.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-07.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-08.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-09.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-10.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-11.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-12.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-13.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-14.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-15.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-16.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-17.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-18.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-19.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-20.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-21.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-22.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-23.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-24.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-25.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-26.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-27.jpg')"></div>
</div>
</section>
</article>
<nav class='next'>
<h1>وثائق</h1>
</nav>
<article id='documents' class='next'>
<section>
<ul class='list'>
<li class='comp'>
<div>
<h3>المبالغ المستلمة</h3>
</div>
<aside>
<h4>غداء</h4>
<span class='counter'>24</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>المبالغ المستلمة</h3>
</div>
<aside>
<h4>الغازولين</h4>
<span class='counter'>12</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>المبالغ المستلمة</h3>
</div>
<aside>
<h4>البقالة</h4>
<span class='counter'>6</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>خدمات</h3>
</div>
<aside>
<h4>كهرباء</h4>
<span class='counter'>1</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>إيجار</h3>
</div>
<aside>
<h4>استلام</h4>
<span class='counter'>10</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>قانوني</h3>
</div>
<aside>
<h4>سيارة</h4>
<span class='counter'>5</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>عائلة</h3>
</div>
<aside>
<h4>قانوني</h4>
<span class='counter'>3</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>الشخصية</h3>
</div>
<aside>
<h4>إرادة</h4>
<span class='counter'>1</span>
</aside>
</li>
<li class='comp'>
<div>
<h3>الشخصية</h3>
</div>
<aside>
<h4>الرعاية الصحية</h4>
<span class='counter'>16</span>
</aside>
</li>
</ul>
</section>
</article>
<nav class='next'>
<h1>قاموس</h1>
</nav>
<article id='dictionary' class='next'>
<section>
<ul class='list'>
<li>
<ol>
<li>رفيف - رَفيفٌ :
<ol>
[ ر ف ف ]. ( مصدر رَفَّ ، يَرِفُّ ).
<li>" رَفيفُ الثَّغْرِ " : بَريقٌ .</li>
<li> ثَوْبٌ رَفيفٌ " : رَقيقٌ . </li>
<li>" شَجَرَةٌ رَفيفَةٌ " : مُنْتَدِيَةٌ . " شَجَرٌ رَفيفٌ ". </li>
<li>" شَجَرَةٌ رَفيفَةٌ " : مُنْتَدِيَةٌ . " شَجَرٌ رَفيفٌ ". </li>
<li>" أَرْضٌ ذاتُ رَفيفٍ " : خِصْبَةٌ .</li>
<li>" هُوَ رَفِيفُ الأَخْلاَقِ " : حَسَنُهَا . </li>
<li>" ذاتُ الرَّفيفِ " : البَساتِينُ يَرُفُّ نَباتُها وَشَجَرُها مِنَ الرَّيِّ والنَّضارَةِ .</li>
<li>"ذاتُ الرَّفيفِ " : سُفُنٌ تُنْضَدُ في النَّهْرِ لِلْعُبُورِ عَلَيْها .</li>
المعجم: الغني
</ol>
</li>
<li>
رَفيف :
<ul>
<li>مصدر رفَّ / رفَّ إلى / رفَّ بـ / رفَّ على / رفَّ لـ .</li>
<li>المعجم: اللغة العربية المعاصر</li>
</ul>
</li>
<li>
رَفيف :
<ul>
<li>اسم علم مؤنث عربي ، </li>
<li>معناه : الخصب حسنُ الأخلاق ، المحبة للطعام والشراب ، الساعية لخدمة الآخرين ، الكريمة ، العطوفة ، المرتاحة ، </li>
<li>سقف البيت . وإذا سمي بها المذكر كانت المعاني نفسها في حال التذكير .</li>
</ul>
</li>
</ol>
</ul>
</section>
</article>
<nav class='next'>
<h1>أكثر</h1>
</nav>
<article id='fruits' class='next'>
<section>
<h2>فاكهة</h2>
<ul class='list'>
<li class="nav" data-goto="apples">
<h3>تفاحة</h3>
</li>
<li class="nav" data-goto="oranges">
<h3>برتقال</h3>
</li>
<li class="nav" data-goto="bananas">
<h3>موز</h3>
</li>
<li class="nav" data-goto="peaches">
<h3>خوخ</h3>
</li>
<li class="nav" data-goto="apricots">
<h3>مشمش</h3>
</li>
<li class="nav" data-goto="cherries">
<h3>كرز</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">رجوع</button>
<h1>تفاحة</h1>
</nav>
<article class="next" id="apples">
<section>
<h2>استعمال</h2>
<ul class="list">
<li>
<h3>عصير</h3>
</li>
<li>
<h3>المعجنات</h3>
</li>
<li>
<h3>عصير التفاح</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">رجوع</button>
<h1>برتقال</h1>
</nav>
<article class="next" id="oranges">
<section>
<h2>استعمال</h2>
<ul class="list">
<li>
<h3>عصير</h3>
</li>
<li>
<h3>العصائر</h3>
</li>
<li>
<h3>سلطة فواكه</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">رجوع</button>
<h1>موز</h1>
</nav>
<article class="next" id="bananas">
<section>
<h2>استعمال</h2>
<ul class="list">
<li>
<h3>العصائر</h3>
</li>
<li>
<h3>بودنغ</h3>
</li>
<li>
<h3>سلطة فواكه</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">رجوع</button>
<h1>خوخ</h1>
</nav>
<article class="next" id="peaches">
<section>
<h2>استعمال</h2>
<ul class="list">
<li>
<h3>فطيرة</h3>
</li>
<li>
<h3>حلويات</h3>
</li>
<li>
<h3>العصائر</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">رجوع</button>
<h1>مشمش</h1>
</nav>
<article class="next" id="apricots">
<section>
<h2>استعمال</h2>
<ul class="list">
<li>
<h3>حبوب</h3>
</li>
<li>
<h3>العصائر</h3>
</li>
<li>
<h3>سلطة فواكه</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">رجوع</button>
<h1>كرز</h1>
</nav>
<article class="next" id="cherries">
<section>
<h2>استعمال</h2>
<ul class="list">
<li>
<h3>فطائر</h3>
</li>
<li>
<h3>المعجنات</h3>
</li>
<li>
<h3>سلطة فواكه</h3>
</li>
</ul>
</section>
</article>
</body>
</html>