-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path20-temel-mobil-uygulama-sablonu.htm
209 lines (152 loc) · 6.25 KB
/
20-temel-mobil-uygulama-sablonu.htm
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
<!DOCTYPE html>
<html>
<head>
<title>Mobil Uygulama Sablonu</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="kutuphane/basic.css">
<script src="kutuphane/basic.js" type="text/javascript" charset="utf-8"></script>
<!-- Ortak kullanılan kodlar, farklı bir dosyaya konulmuştur. -->
<script src="dosyalar/20/close-button.js" type="text/javascript" charset="utf-8"></script>
<!-- Diğer sayfaların kodları -->
<script src="dosyalar/20/sayfa1.js" type="text/javascript" charset="utf-8"></script>
<script src="dosyalar/20/sayfa2.js" type="text/javascript" charset="utf-8"></script>
<style>
body {
overflow: hidden;
}
</style>
<script>
/*
/*
MOBİL UYGULAMA ŞABLONU (ANDROID VE iOS)
Bu şablon, Apache Cordova veya benzeri bir teknoloji ile
mobil uygulama geliştirmek için kullanılabilir.
https://cordova.apache.org/
Android uygulaması nasıl yapılır?
https://www.youtube.com/watch?v=B6x7yKhKZbY
iOS uygulaması nasıl yapılır?
https://www.youtube.com/watch?v=WZZwiI_5WQA
NOT: Kullanmadan önce, APP_MAX_WIDTH değerini;
desteklemek istediğiniz maksimum cihaz genişliği olarak ayarlayın.
Önerilen: 850
*/
// DEĞİŞKENLER
// Uygulamanın orjinal genişliği
var APP_ORIGINAL_WIDTH = 600
// İstenilen maksimum genişlik.
var APP_MAX_WIDTH = 400
// NOT: Masaüstünde açıldığında, dar görünmesi için 400 yazılmıştır.
// mobil için 850 olarak değiştirilebilir.
// a0: Başlangıç Sayfası
// a1: Sayfa 1
// a2: Sayfa 2
var a0, a1, a2
// Başlangıç sayfası butonlarının ortak özellikleri
var propButton = {
width: 450,
height: 80,
color: "tomato",
minimal: 1,
round: 8,
fontSize: 25,
textColor: "rgba(255, 255, 255, 0.8)"
}
// ÖZEL FONKSİYONLARI
// İlk çalışan fonksiyon.
var start = function() {
// En fazla maksimum genişlikte gösterilir.
page.fit(APP_ORIGINAL_WIDTH, APP_MAX_WIDTH)
page.color = "white"
// NESNE: Başlangıç sayfasının taşıyan kutu.
a0 = createBox(0, 0, 600, page.height)
// Görünmez olarak ayarla.
that.visible = 0
that.color = "whitesmoke"
that.border = 0
// Sayfanın içeriğini oluştur.
createA0()
// NESNE: Sayfa1 taşıyıcı.
a1 = createBox(0, 0, 600, page.height)
that.visible = 0
that.color = "tomato"
that.border = 0
// Eğer gerekirse, dikey kaydırma çubuğu çıksın.
that.scrollY = 1
// Sayfa içeriği, sayfa1.js dosyası içindeki kodlar ile oluşturulur.
createA1()
// NESNE: Sayfa2 taşıyıcı.
a2 = createBox(0, 0, 600, page.height)
that.visible = 0
that.color = "tomato"
that.border = 0
that.scrollY = 1
// Sayfa içeriği, sayfa2.js dosyası içindeki kodlar ile oluşturulur.
createA2()
}
// DİĞER FONKSİYONLAR
// Başlangıç sayfasının içeriğini oluştur.
var createA0 = function() {
// NESNE: Logo resmi
a0.imgLogo = createImage(0, 100, 110, 110)
// NOT: bir kutu nesnesinin elemanı olarak oluşturulan
// tüm nesneler, o kutunun içine taşınır.
that.load("resimler/app-logo.svg")
that.color = "white"
that.border = 4
that.borderColor = "tomato"
that.space = 12
that.round = 80
// Nesneyi yatay düzlemde ortala.
that.center("left")
// NESNE: 1. buton
a0.btn1 = createButton()
// Ortak özellikleri ayarla.
that.prop(propButton)
that.text = "Sayfa 1"
that.top = 250
that.center("left")
that.onClick(showA1)
// NESNE: 2. button
a0.btn2 = createButton()
// Ortak özellikleri ayarla.
that.prop(propButton)
that.text = "Sayfa 2"
// Önceki butonun altına hizala.
that.aline(a0.btn1, "bottom", 10)
that.onClick(showA2)
// NESNE: 3. button
a0.btn3 = createButton()
// Ortak özellikleri ayarla.
that.prop(propButton)
that.text = "Sayfa 3"
// Önceki butonun altına hizala.
that.aline(a0.btn2, "bottom", 10)
that.onClick(showA3)
// NOT: sayfa3 farklı bir htm dosyası olarak tasarlanmıştır.
// Başlangıç sayfasını oluşturduktan sonra, görünür yap.
a0.visible = 1
}
// Sayfa1 i göster.
var showA1 = function() {
a1.visible = 1
}
// Sayfa2 yi göster.
var showA2 = function() {
a2.visible = 1
}
// Sayfa3 ü göster.
var showA3 = function() {
go("dosyalar/20/sayfa3.htm")
}
/*
GELİŞTİRME ÖNERİLERİ:
- Figma Arayüz tasarım aracında, 600px genişliğinde sayfalar tasarlayın.
Ve tasarımınızı bir uygulamaya dönüştürün.
*/
</script>
</head>
<body>
<!-- HTML içeriği -->
</body>
</html>