You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`width`ve`height` özelliklerinin animasyonu için CSS:
3
3
```css
4
-
/*original class */
4
+
/*orijinal class */
5
5
6
6
#flyjet {
7
7
transition: all3s;
8
8
}
9
9
10
-
/* JS adds .growing */
10
+
/* JS .growing ekliyor*/
11
11
#flyjet.growing {
12
12
width: 400px;
13
13
height: 240px;
14
14
}
15
15
```
16
16
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.
0 commit comments