Project1

标题: 关于图片渐变,平滑问题。 [打印本页]

作者: number567    时间: 2009-10-6 11:31
提示: 作者被禁止或删除 内容自动屏蔽
作者: 小幽的马甲    时间: 2009-10-6 12:01
它只是省略img_fade参数才随机啊= =
弄成array然后用for循环好了
作者: number567    时间: 2009-10-6 12:10
提示: 作者被禁止或删除 内容自动屏蔽
作者: number567    时间: 2009-10-6 12:11
提示: 作者被禁止或删除 内容自动屏蔽
作者: 小幽的马甲    时间: 2009-10-6 12:21
for i in 1..40,然后调用那个过程,参数i。具体的因为没用过又是在用Wap上所以不太清楚…
作者: number567    时间: 2009-10-6 12:46
提示: 作者被禁止或删除 内容自动屏蔽
作者: 小幽的马甲    时间: 2009-10-6 12:50
我看过了才会这么说啊,关键是我在用Wap…
作者: IamI    时间: 2009-10-6 13:00
在133行:
  1.     ## 排除
  2.     file.delete(exclude) unless exclude == nil
  3.     return file[rand(file.size)]
复制代码
改成
  1.     return file[0] if exclude == nil
  2.     index = file.index(exclude)
  3.     return file[0] if index == nil
  4.     index = -1 if index == file.size
  5.     return file[index + 1]
复制代码
另外我要说明一下……由于file返回的1~20顺序如下:
[1,10,11,12,13,14,15,16,17,18,19,2,20,3,4,5,6,7,8,9]
所以图像也是遵循该顺序。命名最好使用字母或者在前面补上0
超出边界未测试。
作者: number567    时间: 2009-10-6 18:43
提示: 作者被禁止或删除 内容自动屏蔽
作者: 沉影不器    时间: 2009-10-11 13:26
提示: 作者被禁止或删除 内容自动屏蔽




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1