-
Notifications
You must be signed in to change notification settings - Fork 0
Fixme
If the ViewBox is sufficiently large, a part of it may not be drawn.
To solve this problem, change the Viewbox upper boundary from its original value to one close to zero (while keeping it in the negative region).
In SWF, frames that don’t have an explicit value will usually inherit it from previous frames.
However, in the following case:
1. Transform value is constant.
2. ColorTransform value is not defined explicitly.
3. Alpha animation is included.
If the above conditions are met, the Transform value may not be inherited.
To fix this bug, explicitly state the value for the Transform.
If you set an opacity (alpha) value in both the initial frame and the animation, the two values will be multiplied, resulting in an opacity that is too low.
Avoid setting alpha values in both places at once.
In SWF, an object can change location instantly if morphing is not applied. However, in CSS keyframe animation, the object’s position is always interpolated for each frame, assuming smooth movement.
IF you want an object to change position instantly, remove it and redefine it in the new position.
Lightning does not support delayed animation.