|
查看: 1639|回复: 4
|
简单的 fade in fade out, script 做的到吗?
[复制链接]
|
|
|
我再 timeline 里做了这个简单的 fade in fade out effect
但我手里要放很多 照片,如果我用我的方法
1 张照片 播放 3 秒,100张 就的 300秒(5分钟)
我的timeline 里 就很长了
试问各位 可以用script 写吗 (read from library or file or ....)
以后更改 照片也容易一点
http://ice.ueuo.com/sample.html |
|
|
|
|
|
|
|
|
|
|
发表于 13-3-2008 11:56 PM
|
显示全部楼层
可以做到,应该也有的download source file。
keyword 是 dynamic photo gallery. 就用google找找吧。 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 14-3-2008 03:55 PM
|
显示全部楼层
有 keyword "dynamic photo gallery" 就比较容易找
谢谢你 |
|
|
|
|
|
|
|
|
|
|
发表于 15-3-2008 01:47 AM
|
显示全部楼层
MovieClip.prototype.fade = function(i:Number) {
delete this.onEnterFrame;
if(this._alpha != i) {
this.onEnterFrame = function() {
this._alpha += (i - this._alpha) * 0.3;
if(Math.ceil(this._alpha) == i) {
this._alpha = i;
delete this.onEnterFrame;
}
}
}
}
mc.fade(0); //參數 0 ~ 100 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 18-3-2008 10:09 AM
|
显示全部楼层
|
|
|
|
|
|
|
|
| |
本周最热论坛帖子
|