使用AE实现流动彩条效果

修改
鏉ユ簮: 貌似殊途 浏览 5622 日期 2011-10-25 0

 先看看效果:

2. 复制多层。

3. 修改各层颜色。

4. 新建comp2,将comp1加些高光,不做过多变化了,只是一个思路,大家感兴趣自己试试。

  表达式内容如下:

  tmin = .5; //minimum segment duration

  tmax = 2; //maximum segment duration

  end = 0;

  j = 0;

  while (time >= end){

  j++;

  seed_random(j,true);

  start = end;

  end += random(tmin,tmax);

  }

  以下是工程文件:

  1.aep (74.1k)

  好,完毕,谢谢大家。

评论

{{ username ? username.charAt(0).toUpperCase() : '?' }}
Ctrl+Enter 发布
{{ (c.username || c.author_name || '?').charAt(0).toUpperCase() }}
{{ c.username || c.author_name }} {{ Utils.formatDate(c.created_at) }}