Skip to content

Commit 956aef8

Browse files
authored
Merge pull request #139 from InanBerkin/css-animations
CSS-animations
2 parents f2f4408 + a749627 commit 956aef8

File tree

7 files changed

+147
-147
lines changed

7 files changed

+147
-147
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.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
We need to choose the right Bezier curve for that animation. It should have `y>1` somewhere for the plane to "jump out".
1+
Animasyon için doğru Bezier eğrisini seçmemiz gerekiyor. Bir yerinde `y>1` olmalı ki uçak "dışarı taşabilsin".
22

3-
For instance, we can take both control points with `y>1`, like: `cubic-bezier(0.25, 1.5, 0.75, 1.5)`.
3+
Örneğin iki kontrol noktasını da `y>1` olacak şekilde ayarlayabiliriz: `cubic-bezier(0.25, 1.5, 0.75, 1.5)`.
44

5-
The graph:
5+
Eğrinin grafiği:
66

77
![](bezier-up.svg)

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

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

33
---
44

5-
# Animate the flying plane (CSS)
5+
# Havadaki uçağa animasyon ekle (CSS)
66

7-
Modify the solution of the previous task <info:task/animate-logo-css> to make the plane grow more than it's original size 400x240px (jump out), and then return to that size.
7+
Bir önceki görevdeki çözümü değiştirerek <info:task/animate-logo-css> uçağı orijinal boyutu 400x240px'den daha büyük hale getir (dışarı taşır), ve o boyutuna geri çevir.
88

9-
Here's how it should look (click on the plane):
9+
Son hali böyle olmalı (uçağa tıkla):
1010

1111
[iframe src="solution" height=350]
1212

13-
Take the solution of the previous task as the source.
13+
Bir önceki çözümü temel alarak ilerleyebirsiniz.

7-animation/2-css-animations/3-animate-circle/task.md

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

33
---
44

5-
# Animated circle
5+
# Animasyonlu Daire
66

7-
Create a function `showCircle(cx, cy, radius)` that shows an animated growing circle.
7+
`showCircle(cx, cy, radius)` şeklinde, animasyonlu bir şekilde daireyi genişleten, bir fonksiyon yarat.
88

9-
- `cx,cy` are window-relative coordinates of the center of the circle,
10-
- `radius` is the radius of the circle.
9+
- `cx,cy` dairenin merkezinin pencereye göreceli olarak koordinatları,
10+
- `radius` dairenin yarıçapı.
1111

12-
Click the button below to see how it should look like:
12+
Aşağıdaki tuşa tıklayarak nasıl gözükmesi gerektiğini görebilirsin.
1313

1414
[iframe src="solution" height=260]
1515

16-
The source document has an example of a circle with right styles, so the task is precisely to do the animation right.
16+
Kaynak dökümanın içinde aynı şekilde çizilmiş bir daire var, bu görevin amacı sadece animasyonu doğru bir şekilde yapmak.

0 commit comments

Comments
 (0)