Note: This feature does not work on IE9.
It works fine on smartphones and tablets.
Keyframe animation allows you to define the position and state of elements for each frame of an animation. This enables you to create complex animations in a simple way. It’s easier to understand by seeing it in action, so let’s check out a sample right away.
;------------Define the keyframe
[keyframe name="animation1"]
[frame p=20% x="100" ]
[frame p=40% x="-100" ]
[frame p=60% y=100 ]
[frame p=80% rotate="40deg" ]
[frame p=100% y="-100" rotate="0deg"]
[endkeyframe]
;---------Define the character to animate
[chara_new name="miku" storage="miku1.png" jname="Miku"]
[chara_show name="miku" wait=true]
[chara_show name="ren" wait=true]
;---------Execute animation over 5 seconds
[kanim layer=0 keyframe="animation1" time="5000" ]
[wa]
p
parameter to define the percentage of progress at which a certain transformation should occur.