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 pathsegmented-toggle-1.html
executable file
·102 lines (102 loc) · 3.35 KB
/
segmented-toggle-1.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
<!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>
$(function() {
// Init Segmented Control:
$('.segmented').UISegmented({selected: 0});
// Init panel toggling:
$('.segmented').UIPanelToggle('#toggle-panels',function(){$.noop;});
});
</script>
</head>
<body>
<nav>
<h1>Segmented</h1>
</nav>
<article id="main" class="current">
<section>
<div class='horizontal centered'>
<div class='segmented'>
<button>لليلة</button>
<button>أعمل عاقلة</button>
<button>بنت أصول</button>
</div>
</div>
<div id="toggle-panels">
<div>
<ul class='list'>
<li class='comp'>
<aside>
<img title='El Leila' src="../rtl-images/arabic/Amr_Diab-El_Leila.jpg" height="80px">
</aside>
<div>
<h3 title='Amr Diab'>عمرو دياب</h3>
<h4>الليلة</h4>
<p>قال انه لا يوجد لديه الخوف في خلط أحدث الأساليب العالم مع نظيره الغناء عاطفي.</p>
</div>
<aside>
<span class='show-detail'></span>
</aside>
</li>
</ul>
</div>
<div>
<ul class='list'>
<li class='comp'>
<aside>
<img title='Aamel Aaqla' src="../rtl-images/arabic/Aamel_Aaqlah.jpg" height="80px">
</aside>
<div>
<h3 title='Nancy Ajram'>نانسي عجرم</h3>
<h4>أعمل عاقلة</h4>
<p>هي واحدة من الأغاني المفضلة لدينا من قبل نانسي.</p>
</div>
<aside>
<span class='show-detail'></span>
</aside>
</li>
</ul>
</div>
<div>
<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 title='Diana Haddad'>ديانا حداد</h3>
<h4>بنت أصول</h4>
<p>ديانا هي أسطورة. موسيقاها يحرك الروح. ونحن لا يمكن أبدا أن نسمع ما يكفي من صوتها.</p>
</div>
<aside>
<span class='show-detail'></span>
</aside>
</li>
</ul>
</div>
</div>
<ul class='list'>
<li>
<h3>الأشخاص</h3>
</li>
<li>
<h3>الأشياء</h3>
</li>
<li>
<h3>المطاعم</h3>
</li>
</ul>
</section>
</article>
</body>
</html>