22
33[ ![ pub package] ( https://img.shields.io/pub/v/flutter_animation_set.svg )] ( https://pub.dev/packages/flutter_animation_set )
44
5- 简化Flutter交错动画。用动画配置的形式,通过时间线去驱动Flutter的交错动画。你可以
5+ Simplified Flutter stagger animation.To drive the Flutter stagger animation through a timeline in the form of an animation configuration.You can
66
7- 1 . 使用 ` Flutter Animation Set ` 现有的动画组件
8- 2 . 使用 ` Flutter Animation Set ` 去创建新的动画组件
9- 3 . 贡献你的 ` Flutter Animation Set ` 动画组件
7+ 1 . Uses the existing Animation Widget of ` Flutter Animation Set `
8+ 2 . Use ` Flutter Animation Set ` to create a new Animation Widget
9+ 3 . Contribute your Flutter Animation Set Widget
1010
1111## 🎖 Installing
1212
@@ -32,7 +32,7 @@ child: YYRotatingPlane(),
3232
3333** 3、road map**
3434
35- > transition_animations 过渡动画
35+ > transition_animations
3636
3737<table >
3838 <tr >
@@ -155,7 +155,7 @@ child: YYRotatingPlane(),
155155 </tr >
156156</table >
157157
158- > behavior_animation 行为动画
158+ > behavior_animation
159159
160160<table >
161161 <tr >
@@ -212,10 +212,10 @@ import 'package:flutter_animation_set/animator.dart';
212212
213213** 2、use widget**
214214
215- 通过使用AnimatorSet组装动画
215+ Assemble the animation using an AnimatorSet Widget
216216
217- * child:执行动画的组件
218- * animatorSet:动画集合
217+ * child: The component that executes the animation
218+ * animatorSet: Collection of animation
219219
220220``` dart
221221AnimatorSet(
@@ -230,26 +230,26 @@ about animation widget
230230
231231Widget|Mean|Description
232232:--|:--|:--:|
233- ** W** |width|控制宽度的变化,如果是按比例拉升,建议用SX替代
234- ** H** |height|控制高度的变化,如果是按比例拉升,建议用SY替代
235- ** P** |padding|控制边距的变化
236- ** O** |opacity|控制透明度的变化
237- ** SX** |scaleX|以中点进行X轴的缩放
238- ** SY** |scaleY|以中点进行Y轴的缩放
239- ** RX** |rotateX|以中点进行X轴的旋转
240- ** RY** |rotateY|以中点进行Y轴的旋转
241- ** RZ** |rotateZ|以中点进行Z轴的旋转
242- ** TX** |transitionX|进行X轴的平移
243- ** TY** |transitionY|进行Y轴的平移
244- ** C** |color|控制背景颜色变化
245- ** B** |border|控制背景边框变化
233+ ** W** |width|Control the change of width. If it is scaled up, SX is recommended instead
234+ ** H** |height|Control the change of height. If it is scaled up, SY is recommended instead
235+ ** P** |padding|Control padding changes
236+ ** O** |opacity|Control opacity changes
237+ ** SX** |scaleX|Scale the X-axis with the midpoint
238+ ** SY** |scaleY|Scale the Y-axis with the midpoint
239+ ** RX** |rotateX|Rotate the X-axis with the midpoint
240+ ** RY** |rotateY|Rotate the Y-axis with the midpoint
241+ ** RZ** |rotateZ|Rotate the Z-axis with the midpoint
242+ ** TX** |transitionX|Translate the Z-axis with the midpoint
243+ ** TY** |transitionY|Translate the Y-axis with the midpoint
244+ ** C** |color|Control background color changes
245+ ** B** |border|Control background border changes
246246
247247about support widget
248248
249249Widget|Mean|Description
250250:--|:--|:--:|
251- ** Delay** |delay timeLine|延长时间线,进入等待阶段
252- ** Serial** |combine animation|通过组合动画,达到通知播放的效果
251+ ** Delay** |delay timeLine|Extend the timeline to wait
252+ ** Serial** |combine animation|Through the combination of animation, to achieve the effect of playing together
253253
254254## ⚡ For Example
255255
0 commit comments