-
Notifications
You must be signed in to change notification settings - Fork 2
/
22-ozel-buton-ve-menu-renk2.htm
202 lines (148 loc) · 6.57 KB
/
22-ozel-buton-ve-menu-renk2.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
<!DOCTYPE html>
<html>
<head>
<title>Özel Button ve Menü</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- DIŞARIDAN YÜKLENEN KÜTÜPHANE DOSYALARI -->
<link rel="stylesheet" type="text/css" href="kutuphane/basic.css">
<script src="kutuphane/basic.js" type="text/javascript" charset="utf-8"></script>
<style>
/* Butonun üzerinde gelince animasyon olsun. */
.btn-type1 {
background-color: whitesmoke;
transition: left 0.5s, top 0.5s, width 0.5s, height 0.5s, background-color 0.5s;
}
.btn-type1:hover {
background-color: palegoldenrod !important;
}
</style>
<script>
/*
Bir dizi değişkeni ile dinamik oluşturulan menü.
*/
// DEĞİŞKENLER
var menuData = [
{id: 1, type: "button", text: "İlk Sayfa", width: 140, icon: "home.png" },
{id: 2, type: "button", text: "Ürünler", width: 140, icon: "fruits.png" },
{id: 3, type: "button", text: "Sepet", width: 125, icon: "basket.png" },
{id: 4, type: "button", text: "Ödeme", width: 135, icon: "payment.png" },
{id: 5, type: "line" },
{id: 6, type: "button", text: "Çıkış", width: 120, icon: "signout.png" }
]
// Tum butonların taşıyıcısı
var menu
// Sayfanın genişliği, menü genişliğine göre belirlenir.
var pageWidth
// BAŞLANGIÇ FONKSİYONLARI
// İlk çalışan fonksiyon.
var start = function() {
page.color = "whitesmoke"
// NESNE: Butonların taşıyıcısı
menu = createBox(0, 40, 400, 60)
that.color = "white"
that.border = 0
that.round = 8
// Dışa taşan nesneleri göster.
menu.element.style.overflow = "visible"
// Buton oluşturuldukça, genişliği bu değişkene eklenecek.
var totalMenuWidth = 5
// Butonları oluştur.
for (var i = 0; i < menuData.length; i++) {
if (menuData[i].type == "button") {
// NESNE: Buttonlardan biri
menu["item" + i] = createButtonWithIcon(menuData[i].text, menuData[i].width, "resimler/22/" + menuData[i].icon)
// CSS ile butonun üzerine geldiğinde renginin değişmesini sağla.
that.element.classList.add("btn-type1")
// CSS bağlantısını kaldırmak için
// that.element.classList.remove("btn-type1")
// Basılan butonu tanımak için anahtarı kaydet.
that.id = menuData[i].id
that.onClick(itemClicked)
} else if (menuData[i].type == "line") {
// NESNE: Ayıraçlardan biri
menu["item" + i] = createBox()
that.color = "whitesmoke"
that.width = 4
that.height = 50
that.round = 8
that.border = 0
}
// İlk nesne, left 5px, top 5px olacak.
if (i == 0) {
that.top = 5
that.left = 5
} else {
// Nesneyi, bir önceki nesneye göre hizala.
that.aline(menu["item" + (i - 1)], "right", 5)
}
// Nesne genişliği ve boşluğu ekle.
totalMenuWidth += that.width + 5
}
// Taşıyıcının genişliğini, butonlara göre yeniden düzenle.
menu.width = totalMenuWidth
pageWidth = totalMenuWidth + 100
// NESNE: Seçilen butonu belirten nokta.
menu.selectedDot = createBox(0, 0, 10, 10)
that.color = "tomato"
that.round = 10
that.border = 0
that.opacity = 0.8
// CSS hareketi ekle.
that.setMotion("left 0.5s, background-color 0.5s");
// Son basılan buton nesnesini saklamak için eleman.
menu.clickedButton = undefined
// İlk butona basılmış gibi çalıştır.
itemClicked(menu.item0)
// Nesneyi ortala.
pageResized()
// Sayfa boyutu değiştiğinde, yeniden ortala.
page.onResize(pageResized)
}
// DİĞER FONKSİYONLAR
var pageResized = function() {
// Menuyu ekrana tam sığsın.
page.fit(pageWidth, pageWidth)
// Menuyu yatay olarak ortala.
menu.center("left")
}
// Bir butona basıldığında, o butonu seçen fonksiyon.
var itemClicked = function(self) {
print("Basılan butonun anahtarı: " + self.id)
// Bir önceki basılan butonu eski haline getir.
if (menu.clickedButton != undefined) {
menu.clickedButton.color = "whitesmoke"
}
// Daireyi, basılan butonun altına getir.
menu.selectedDot.top = self.top + self.height + 10
menu.selectedDot.left = self.left + (self.width / 2) - 5
// Basılan butonun rengini belirle.
self.color = "palegoldenrod"
// Basılan butonu sonra kullanmak üzere sakla.
menu.clickedButton = self
}
// Resimli buton oluşturan fonksiyon.
var createButtonWithIcon = function(text, width, iconPath) {
// NESNE: Taşıyıcı kutu
var object = createBox(0, 0, width, 50)
that.border = 0
that.round = 8
// NESNE: Resim
object.imgLogo = createImage(15, 12, 25, 25)
that.load(iconPath)
// NESNE: Yazı
object.lblText = createLabel(55, 13)
that.text = text
that.textColor = "rgba(0, 0, 0, 0.6)"
that.fontSize = 18
// that değişkenini güncelle.
makeBasicObject(object)
// Nesneyi geri gönder.
return object
}
</script>
</head>
<body>
<!-- HTML içeriği -->
</body>
</html>