Skip to content

Commit 9c39fc8

Browse files
authored
translate plane task
1 parent 60d01fd commit 9c39fc8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11

2-
CSS to animate both `width` and `height`:
2+
`width` ve `height` özelliklerinin animasyonu için CSS:
33
```css
4-
/* original class */
4+
/* orijinal class */
55

66
#flyjet {
77
transition: all 3s;
88
}
99

10-
/* JS adds .growing */
10+
/* JS .growing ekliyor*/
1111
#flyjet.growing {
1212
width: 400px;
1313
height: 240px;
1414
}
1515
```
1616

17-
Please note that `transitionend` triggers two times -- once for every property. So if we don't perform an additional check then the message would show up 2 times.
17+
Dikkat et! `transitionend` iki kere tetikleniyor -- her özellik için bir kere. Eğer bir konrol yapmazsak mesaj 2 kere gözükecek.

7-animation/2-css-animations/1-animate-logo-css/solution.view/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
flyjet.addEventListener('transitionend', function() {
3535
if (!ended) {
3636
ended = true;
37-
alert('Done!');
37+
alert('Bitti!');
3838
}
3939
});
4040

7-animation/2-css-animations/1-animate-logo-css/task.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ importance: 5
22

33
---
44

5-
# Animate a plane (CSS)
5+
# Uçağa animasyon ekle (CSS)
66

7-
Show the animation like on the picture below (click the plane):
7+
Aşağıdaki gibi bir animasyon yap (Uçağa tıkla):
88

99
[iframe src="solution" height=300]
1010

11-
- The picture grows on click from `40x24px` to `400x240px` (10 times larger).
12-
- The animation takes 3 seconds.
13-
- At the end output: "Done!".
14-
- During the animation process, there may be more clicks on the plane. They shouldn't "break" anything.
11+
- Resim tıklanınca boyutu `40x24px`'den `400x240px`'e çıkıyor.
12+
- Animasyon 3 saniye sürüyor.
13+
- Bitince "Bitti!" diye mesaj göster.
14+
- Animasyon süresince uçağa birden çok kere tıklanabilir. Bu tıklamalar bir şeyi bozmamalıdır.

0 commit comments

Comments
 (0)