0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AE 特定のスピードで任意の文字列を順に表示していく。

Last updated at Posted at 2019-03-15

今回やりたかったこと

①テキスト「012345678A0123456789ABCDEF」を順番に表示していく。
②テキスト開始の文字はランダム
③変化するタイミングは同じ速度だが、開始時間は微妙に違うようにする。

完成したものはこれ

カーニング問題はとりあえず置いておいて(笑)
多分カーニングはどうにもならないから一文字づつやるのが良さそう。
コンポ 1.gif

今回作成した内容のエクスプレッション

テキストレイヤーのソーステキストに下記のエクスプレッション

fix  = "";
seedRandom(0,true);

function cr(a){
text = "012345678A0123456789ABCDEF";
t = time+(a*text.length);
kankaku = 0.2; //mmsec
a = Math.ceil(t/kankaku) ;
result = a%text.length;
return text[result];
}

for (var i = 0 ; i < 10 ; i++ ){
fix = cr(random())+ fix;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?