发信人: soulfox (小o&灵狐~以华丽之名), 信区: ANSI
标 题: [合集]第二章
发信站: 日月光华 (2007年08月24日10:00:04 星期五), 站内信件
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月03日20:06:13 星期五 提到:
───────────────────────────────────────
__ ___
╱█ __ __ ______ ______ ╱∠-╲
╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
__╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
 ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
日月光华ANSI版短期培训班 /__ /__
▏ ╱/╱
____ /▏╱╱ ╲
╱◣●\ /\︶╱ \
第 二 章: 控制码解说,颜色的搭配 /◆ _ / │ ~╲ │
▕▲ ╰)/─│ ☉│ │ │
▕◢ ^ \─│ │ │ │
时间安排: 2007年08月03日 ╲▼■/ │ ☉│ │_│
当班教师: NSgan,Saule,windream等 ▔▔ │ │ | |
│ ︵___/ \_
│ (~──||||-'
───────────────────────────────────────
──|基本知识|────────────────────────────────
一 什么是ANSI转义序列
ANSI转义序列,都是以一个ASCII 码27号字符开始,该字符在firebird系统下
的输入方式是连按两下ESC(水木的系统也是这样), 这时一般会出现一个*号,
不过它与直接通过Shift+8输入的*号不同,这实际上是一个控制字符(ASCII码
27号字符),这里要称赞一下水木,控制符用了黄颜色的*,这样即使跟普通的
*号同时出现也不会混淆了。
ANSI转义序列是区分大小写的,后面我们会详细介绍这一点。
在编写文章时连按两下ESC ,看到一个*号后,接着输入“[31m暗红”(不要输
入那两个引号),现在应该是“*[31m暗红”了,按一下ESC再按一下C键,就能
看见这样的效果:暗红。字的颜色与其他未加控制符的有所不同,其实我们有
很多可以设置的效果,后面将用列表形式给出。
发文时按ESC-C可以预览效果,大多数情况下看到的和发表出来的实际效果是
一样的,不过ESC-C只能看当前一屏(23行)内的效果。
────────────────────────────────────|⑴|─
──|基本知识|────────────────────────────────
二 设置显示属性
显示属性是最常用的一个ANSI控制,可设置的项目包括
◆ 前景色(文本颜色)
◆ 背景色
◆ 高亮状态的设置
◆ 文本下划线
◆ 闪烁文本
◆ 反显
BBS上我们可以设置的颜色共有16种,其中8种低亮颜色,8种高亮颜色。
为避免其他方面造成的影响,请大家先把终端软件的默认高亮等的设置关掉。
cterm:编辑>>系统设置>>高级,确认没选上总是高亮
fterm:选项>>参数设置,确认没有选上默认高亮
sterm:选项>>当前连接设置>>远程登录设置>>外观,确认没选上总是高亮
────────────────────────────────────|⑵|─
──|基本知识|────────────────────────────────
三 色彩属性 |颜色|前景代码|背景代码|背景效果|256色 色值|
|══|════|════|════|═════|
BBS上有8种颜色可用,分别为:|黑色| *[0;30m| *[40m|▕▔▔▏|(00,00,00)
黑,红,绿,黄,蓝,紫,靛,白 |灰色| *[1;30m| 不可用| ▔▔ |(80,80,80)
由于字符前景有亮和暗的区别,|暗红| *[0;31m| *[41m|▕▔▔▏|(80,00,00)
共有16种不同的前景色,背景 |亮红| *[1;31m| 不可用| ▔▔ |(FF,00,00)
色只允许暗色,因此只有8种。 |暗绿| *[0;32m| *[42m|▕▔▔▏|(00,80,00)
|亮绿| *[1;32m| 不可用| ▔▔ |(00,FF,00)
四 色彩代码 |暗黄| *[0;33m| *[43m|▕▔▔▏|(80,80,00)
|亮黄| *[1;33m| 不可用| ▔▔ |(FF,FF,00)
*[0m:关闭各显示属性 |暗蓝| *[0;34m| *[44m|▕▔▔▏|(00,00,80)
*[1m:高亮 |亮蓝| *[1;34m| 不可用| ▔▔ |(00,00,FF)
*[4m:下划线 |暗紫| *[0;35m| *[45m|▕▔▔▏|(80,00,80)
*[5m:闪烁 |亮紫| *[1;35m| 不可用| ▔▔ |(FF,00,FF)
*[7m:反显 |暗靛| *[0;36m| *[46m|▕▔▔▏|(00,80,80)
其余色彩代码见右表,要说明 |亮靛| *[1;36m| 不可用| ▔▔ |(00,FF,FF)
的是,*[m 和*[0m功能基本类 |暗白| *[0;37m| *[47m|▕▔▔▏|(C0,C0,C0)
似,具体区别下一章会谈到。 |亮白| *[1;37m| 不可用| ▔▔ |(FF,FF,FF)|
────────────────────────────────────|⑶|─
──|基本知识|────────────────────────────────
五 代码简化
一般来说BBS里面一行代码的长度最多254个字符(一个中文字算两个字符),对
于活动看板等的,可能还有更严格的限制,允许的代码长度更短。因此,代码
简化,去除不必要的代码,对于光华当前系统有着较大的作用。
我们看一个例子,例,按照先前所说可表示为*[1m*[5m*[36m*[44m例*[0m,这
样就需要占24个字节,我们可以这样简化:*[1;5;36;44m例*[0m,这样就只占
18个字节。控制符之间可以用“;”相互连接,最后只用一个“m”结尾,碰到
*[31;32;33;42;45;44m这样重复出现前景和背景的情况,我们只看同一类型最
后出现的控制符,也就是*[33;44m,先出现的效果会被后出现的覆盖。
六 规范代码
对于代码的规范,最基本的原则是保证代码的通用性,各种代码尤其是下划线
和反色,在不同浏览终端的显示大为不同,因此要尽量避免使用。而闪烁要避
大面积的使用,以保证他人浏览的方便。这里建议若连续几行都有代码控制,
要在每一行结束用*[m或*[0m收尾,避免影响到下一行的代码。
────────────────────────────────────|⑷|─
──|色彩理论|────────────────────────────────
一 三原色和三原光
▁
我们日常生活中接触到的颜色系统是三原色 ◢▄◣
系统,三种基本色为:红、黄、蓝。而电脑 ▌红 │
显示的颜色系统是三原光系统,三种基本色 ▁ ↙ ◥▄◤ ↘ ▁
为:红、绿、蓝。三原色与三原光是有区别 ◢▄◣ ◢▄◣
的,我们今后所说的颜色都是建立在三原光 ▌黄 │ ↓ ▌紫 │
系统上的,希望大家不要混淆。 ◥▄◤ ↘ ▁ ↙ ◥▄◤
◢▄◣
二 三原光的合成 ↑ ▌白 │ ↑
▁ ◥▄◤ ▁
1=红 2=绿 4=蓝 三原光的合成可以用左 ◢▄◣ ↗ ↖ ◢▄◣
3=红+绿=黄 边的表格进行理解,其 ▌绿 │ ↑ ▌蓝 │
5=红+蓝=紫 包含了合成原理和对应 ◥▄◤ ▁ ◥▄◤
6=绿+蓝=青 代码,也可以用右边的 ↘ ◢▄◣ ↙
7=红+绿+蓝=白 图进行形象记忆。 ▌靛 │
0就是黑色 ◥▄◤
────────────────────────────────────|⑸|─
──|色彩理论|────────────────────────────────
三 相邻色和互补色
▁
我们看一下右边的示意图,以白色为中心,黑 ◢▄◣
色为外延,中圈互相毗邻的颜色我们称之为相 ▌红 │
邻色,分处白色两端的为互补色。白色与黑色 ▁ ↙ ◥▄◤ ↘ ▁
我们称为基础互补色。 ◢▄◣ ◢▄◣
▌黄 │ ↓ ▌紫 │
相邻色距离最近,混杂在一起时会产生视觉误 ◥▄◤ ↘ ▁ ↙ ◥▄◤
差,因此大面积的互相混淆是不推荐的;互补 ◢▄◣
色距离最远,混杂在一起会产生强烈的对比效 ↑ ▌白 │ ↑
果,不易产生视觉误差。黑色和白色可以和任 ▁ ◥▄◤ ▁
何颜色搭配而不会产生较大视觉误差。 ◢▄◣ ↗ ↖ ◢▄◣
▌绿 │ ↑ ▌蓝 │
这里需要提一下黑色与白色间的两种颜色灰色 ◥▄◤ ▁ ◥▄◤
与暗白,灰色与三种基础色不易产生混淆,而 ↘ ◢▄◣ ↙
与三种合成色极易产生混淆,这点在使用上需 ▌靛 │
要格外注意。暗白与任何一种颜色的搭配都适 ◥▄◤
中,但大面积的背景暗白可能造成过亮效果。
────────────────────────────────────|⑹|─
──|色彩理论|────────────────────────────────
四 透明效果
我们先前曾给出一张颜色与代码的列表,里面列出了16种颜色在 256色表示下
的代码,这里就不重新列出,而根据颜色代码加法,可以得到多种透明效果。
正确的透明效果: ▌ ▌ ▌ ▌
▌ ▌
▌ ▌
▌ ▌
──────────────────────────────────
错误的透明效果: ▌
▌
▌
▌
────────────────────────────────────|⑺|─
──|知识扩充|────────────────────────────────
一 特殊ANSI转义序列
*[A 光标上移(例如*[3A是上移3行)
*[B 光标下移
*[C 光标右移
*[D 光标左移
*[H 光标定位(实际使用时一般为*[m;nH,m取1~24,n取1~80)
*[s 存储光标位置
*[u 恢复光标位置(回到最近一次*[s所在的地方)
*[K 删除到行末(fterm和sterm用当前背景色填充,cterm用默认背景色填充)
*[f 作用和用法和*[H完全一样
*[2J 作用是清屏
这些特殊转义序列平时使用较少,主要用于特殊qmd的制作,我们在qmd制作一
节中会详细介绍,但这类qmd可能影响他人阅读,不建议使用。
需要注意的是,*[u和*[U是有区别的,使用时请小心谨慎。
────────────────────────────────────|⑻|─
──|知识扩充|────────────────────────────────
____ ◢◢◤ ____
二 非标准ANSI转义序列 ╱ ╲▃▅▆▇ ▅▃╱ ╲
/ ◢ █ 夕 楼◣ \
Cterm │ ◢ █ █ █Sylow ◣ │
*[M 延时控制 \ ◢ ▂▃▂█ █▂▃▂ ◣ /
*[G 响铃 \ ◢ ◣ ◢ ◣ /
*[I 改变字体 ▊▊ ▎▎
*[F 对某一区域填充颜色(基本不用) ████ ▇ ▇ ████
*[U 弹出URL确认框 ▊▊ ████ █ █ ████ ▎▎
fterm ◥◥ ◤ ◥ ◤◤
*[nM 删除当前开始的n行 ◢╲ ▁▃▄▆▅▄▅▆▄▃▁ ╱◣
*[nL 插入n个空白行,光标位置不变 ▊◢ ◣▎
*[nP 删除n个空格
*[n@ 插入n个空格,光标位置不变 ▊◥ ▁▂▃▄▆███▆▄▃▂▁ ◤▎
◥ ◤
目前很多特殊和非标准的ANSI转义序 /◥ ◤\
列都被禁止,希望大家勿随意使用。 \ ▅▃▁ ▁▃▅ /
其实只用标准序列就可以做出很多特 ╭ ╭╯▇▇▇╰╮ ╮
殊效果,右图就是一个很好的例子。 ────╯ ╰────
────────────────────────────────────|⑼|─
──|本次作业|────────────────────────────────
一 初级班作业
1. 在Test版练习手动给少量文字加控制码。(该题无须书面提交)
2. 使用透明色效果制作一个ANSI。(书面提交,形式不限)
3. 简化以下代码。(书面提交,提交简化后代码及显示效果)
*[1m*[4m*[5m*[33;45;31mA*[0m*[44;45;32mB*[0m*[42;32mC*[0m
4. 规范代码的意义。(书面提交,字数不限)
二 提高班作业(同时供学有余力的初级班学员选做)
1. 自行查阅有关走马灯效果的制作方法并尝试制作。(书面提交,形式不限)
正式学员完成作业后以投条方式提交给组长,由组长统一提交给教师。旁听学员若
希望提交作业,可交给kongkong或任一当班教师。
注:如初级班学员能在培训阶段较好的完成高级班作业,可考虑授予高级学员证书。
────────────────────────────────────|⑽|─
☆──────────────────────────────────────☆
BOneFiveER (onlyone) 于 2007年08月03日20:08:55 星期五 提到:
阿,我恨走马灯。。。555
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月03日20:09:20 星期五 提到:
呃。。。cft。。。
同学我觉得如果下次你用一个精美的ansi小图来表现你的这个心情,你将得到一个m而不
是一个x。。。//esc...
: 先RE再看!!
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月03日20:13:00 星期五 提到:
momo..
: 呃。。。cft。。。
: 同学我觉得如果下次你用一个精美的ansi小图来表现你的这个心情,你将得到一个m而不
: 是一个x。。。//esc...
: : 先RE再看!!
: : .................(以下省略)
☆──────────────────────────────────────☆
applezyz (走自己的路很精彩) 于 2007年08月03日20:18:15 星期五 提到:
TEST版是啥?
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月03日20:20:57 星期五 提到:
有一个版叫test@@
: TEST版是啥?
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月03日20:21:13 星期五 提到:
0区 test版。
: TEST版是啥?
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月03日20:21:32 星期五 提到:
momo你。。。去找找看吧。。
: 有一个版叫test@@
: : TEST版是啥?
: : .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月03日20:21:48 星期五 提到:
?
: momo你。。。去找找看吧。。
: : 有一个版叫test@@
☆──────────────────────────────────────☆
yahan (yahan) 于 2007年08月03日20:27:56 星期五 提到:
任务繁重啊
: TEST版是啥?
: : ───────────────────────────────�..
: : __ ..
: : ╱█ __ __ ______ ______ ..
: : ╱__█ █ █ █__ ̄  ̄█ ̄ ..
: : __╱  ̄█ █╲█ ▁ █ __█__ ..
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ /..
: : 日月光华ANSI版短期培训班 [..
: : ▏ �..
: : ____ /▏╱�..
: : ╱◣●..
: : .................(以下省略)
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月03日20:29:10 星期五 提到:
还行吧。。。我记得当时我做这一章是感觉最轻松的。。。。
: 任务繁重啊
: : TEST版是啥?
☆──────────────────────────────────────☆
BOneFiveER (onlyone) 于 2007年08月03日20:30:28 星期五 提到:
我还根本不知道走马灯原理涅。。。555
: 还行吧。。。我记得当时我做这一章是感觉最轻松的。。。。
: : 任务繁重啊
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月03日20:32:39 星期五 提到:
本版精华区x-8-13-1
: 我还根本不知道走马灯原理涅。。。555
: : 还行吧。。。我记得当时我做这一章是感觉最轻松的。。。。
☆──────────────────────────────────────☆
applezyz (走自己的路很精彩) 于 2007年08月03日20:32:39 星期五 提到:
牛人。。。
: 还行吧。。。我记得当时我做这一章是感觉最轻松的。。。。
: : 任务繁重啊
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月03日20:34:46 星期五 提到:
=,=没有啊,要掌握的东西不多,基本上是了解为主的嘛。。。
: 牛人。。。
: : 还行吧。。。我记得当时我做这一章是感觉最轻松的。。。。
☆──────────────────────────────────────☆
applezyz (走自己的路很精彩) 于 2007年08月03日20:35:20 星期五 提到:
对了,想请教怎么复制粘贴ANSI图?
: =,=没有啊,要掌握的东西不多,基本上是了解为主的嘛。。。
: : 牛人。。。
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月03日20:36:23 星期五 提到:
置底第一篇
: 对了,想请教怎么复制粘贴ANSI图?
: : =,=没有啊,要掌握的东西不多,基本上是了解为主的嘛。。。
☆──────────────────────────────────────☆
windream (0024·2004·思念是一种饼) 于 2007年08月03日20:40:31 星期五 提到:
看讲到了代码简化!
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月03日20:47:21 星期五 提到:
这个懂的
嗯那^^
: 看讲到了代码简化!
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
BOneFiveER (onlyone) 于 2007年08月03日20:47:55 星期五 提到:
可惜做的不是这个哦。。。。
: 这个懂的
: 嗯那^^
: : 看讲到了代码简化!
: : .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月03日20:49:00 星期五 提到:
momo乌梅jj
: 看讲到了代码简化!
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
iloveCamus (收到手写情书·感动) 于 2007年08月03日21:01:06 星期五 提到:
扫盲了
走马灯?
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
iloveCamus (收到手写情书·感动) 于 2007年08月03日21:27:41 星期五 提到:
我作业已经做好了,不过还要再改改
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
applezyz (走自己的路很精彩) 于 2007年08月03日21:31:05 星期五 提到:
牛啊。。
: 我作业已经做好了,不过还要再改改
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
iloveCamus (收到手写情书·感动) 于 2007年08月03日21:32:23 星期五 提到:
不牛的,提高班我最弱了,做得最简单所以很快
: 牛啊。。
: : 我作业已经做好了,不过还要再改改
: : .................(以下省略)
☆──────────────────────────────────────☆
aimerbonbon (病了) 于 2007年08月03日22:14:42 星期五 提到:
me too...
要好好研究一下了诺~~
: 我还根本不知道走马灯原理涅。。。555
: : 还行吧。。。我记得当时我做这一章是感觉最轻松的。。。。
☆──────────────────────────────────────☆
heavenmiss (恋斯依依☆真懒惰) 于 2007年08月03日23:02:44 星期五 提到:
吃个饭去
回来做作业^^
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
jingee (Wel~to M_network) 于 2007年08月03日23:18:34 星期五 提到:
跑马灯。。。。完了。。。
熊猫我喜欢,虽然烧香害了不少电脑。。。
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
IceEyes (0470·iCE·人衰得要有样子) 于 2007年08月03日23:47:04 星期五 提到:
哇。。
这次的ms还要花点时间。。
越来越好玩了。。
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
rainwing (Cinema Paradiso) 于 2007年08月04日10:33:12 星期六 提到:
那个透明效果。。。没懂
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:33:32 星期六 提到:
同不懂-.-
: 那个透明效果。。。没懂
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
rainwing (Cinema Paradiso) 于 2007年08月04日10:34:19 星期六 提到:
昨天感冒了,从7点睡到现在-,=
错过了上课时间
: 同不懂-.-
: : 那个透明效果。。。没懂
: : .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:34:44 星期六 提到:
mo@@
: 昨天感冒了,从7点睡到现在-,=
: 错过了上课时间
: : 同不懂-.-
☆──────────────────────────────────────☆
rainwing (Cinema Paradiso) 于 2007年08月04日10:40:42 星期六 提到:
><
可怜死了
热得疯掉了,不能开空调,也不敢吹风扇
: mo@@
: : 昨天感冒了,从7点睡到现在-,=
: : 错过了上课时间
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:41:42 星期六 提到:
吃冷饮..
: ><
: 可怜死了
: 热得疯掉了,不能开空调,也不敢吹风扇
: : mo@@
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日10:42:12 星期六 提到:
比如有
三种颜色
而其中黄色和蓝色叠加的时候,视觉效果刚好是绿色
那么假想两个颜色都是半透明,将他们进行叠加,
就是这种效果
而这个透明效果的绿色,其实使我们自己人工放在那里的
: 那个透明效果。。。没懂
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:43:07 星期六 提到:
那两个一样的颜色重叠呢?
: 比如有
:
:
:
:
:
:
: 三种颜色
: 而其中黄色和蓝色叠加的时候,视觉效果刚好是绿色
: 那么假想两个颜色都是半透明,将他们进行叠加,
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:43:20 星期六 提到:
当中的代码是怎么看?
: 那两个一样的颜色重叠呢?
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
heavenmiss (恋斯依依☆长期征人吃饭^^) 于 2007年08月04日10:43:31 星期六 提到:
中间是亮色
是这样吧?
: 那两个一样的颜色重叠呢?
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:44:14 星期六 提到:
中间加亮的色块?那fterm下能手动输入吗
: 中间是亮色
: 是这样吧?
: : 那两个一样的颜色重叠呢?
: : .................(以下省略)
☆──────────────────────────────────────☆
heavenmiss (恋斯依依☆长期征人吃饭^^) 于 2007年08月04日10:47:15 星期六 提到:
其实我还没有在FTERM做过色块...不知道怎么弄
我都是用AnsiEditor...
: 中间加亮的色块?那fterm下能手动输入吗
: : 中间是亮色
: : 是这样吧?
☆──────────────────────────────────────☆
chenyiling (dreamer @ Paradise) 于 2007年08月04日10:48:30 星期六 提到:
黄+蓝≠绿。。。
: 比如有
:
:
:
:
:
:
: 三种颜色
: 而其中黄色和蓝色叠加的时候,视觉效果刚好是绿色
: 那么假想两个颜色都是半透明,将他们进行叠加,
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日10:48:42 星期六 提到:
变成亮色,
█
█
█
█
透明色的效果是有限的,不是所有颜色相加后的第三种颜色在ansi里面都存在的~
: 那两个一样的颜色重叠呢?
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日10:48:59 星期六 提到:
对的~
: 中间是亮色
: 是这样吧?
: : 那两个一样的颜色重叠呢?
: : .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:49:24 星期六 提到:
emmm那个亮色不知道是怎么弄出来的@@
: 变成亮色,
:
:
:
:
: █
: █
: █
: █
: 透明色的效果是有限的,不是所有颜色相加后的第三种颜色在ansi里面都存在的~
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日10:49:26 星期六 提到:
手动没有色块输入,还是使用ansieditor比较方便
: 中间加亮的色块?那fterm下能手动输入吗
: : 中间是亮色
: : 是这样吧?
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:49:41 星期六 提到:
对哦..
: 黄+蓝≠绿。。。
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:49:56 星期六 提到:
哦@@
: 手动没有色块输入,还是使用ansieditor比较方便
: : 中间加亮的色块?那fterm下能手动输入吗
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日10:50:57 星期六 提到:
打算改了,发现代码错了...
: 黄+蓝≠绿。。。
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:53:22 星期六 提到:
: 变成亮色,
:
:
:
:
: █
: █
: █
: █
: 透明色的效果是有限的,不是所有颜色相加后的第三种颜色在ansi里面都存在的~
原来是这样的@@
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日10:54:27 星期六 提到:
现在好了,囧
: 比如有
:
:
:
:
:
:
: 三种颜色
: 而其中黄色和蓝色叠加的时候,视觉效果刚好是绿色
: 那么假想两个颜色都是半透明,将他们进行叠加,
: .................(以下省略)
☆──────────────────────────────────────☆
chenyiling (dreamer @ Paradise) 于 2007年08月04日10:55:45 星期六 提到:
其实很好记的啊。。。
2+4=6
哪会有3+4=2的?
: 现在好了,囧
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日10:57:14 星期六 提到:
momo 赞的
: 现在好了,囧
: : 比如有
: :
: :
: :
: :
: :
: :
: : 三种颜色
: .................(以下省略)
☆──────────────────────────────────────☆
Clof (人中吕布、马中赤兔、猪中广沪) 于 2007年08月04日11:00:06 星期六 提到:
好像和去年的差不多,就是作业不一样。。。。。。
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日11:00:39 星期六 提到:
我咋觉得作业也是一样的呢..
: 好像和去年的差不多,就是作业不一样。。。。。。
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日11:00:51 星期六 提到:
直接画的图粘贴
光想着怎么写比较好懂
发完贴觉得别扭于是火速改代码改掉
: 其实很好记的啊。。。
: 2+4=6
: 哪会有3+4=2的?
: : 现在好了,囧
: : .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日11:01:10 星期六 提到:
经典教程 哈哈
: 好像和去年的差不多,就是作业不一样。。。。。。
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
Clof (人中吕布、马中赤兔、猪中广沪) 于 2007年08月04日11:01:36 星期六 提到:
1. 在Test版练习手动给少量文字加控制码。(该题无须书面提交)
: 我咋觉得作业也是一样的呢..
: : 好像和去年的差不多,就是作业不一样。。。。。。
: : .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日11:02:08 星期六 提到:
学员不一样谢谢...
: 好像和去年的差不多,就是作业不一样。。。。。。
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: : ▏ ╱/╱
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月04日11:02:23 星期六 提到:
好吧其实我是不记得了= =
: 1. 在Test版练习手动给少量文字加控制码。(该题无须书面提交)
: : 我咋觉得作业也是一样的呢..
☆──────────────────────────────────────☆
Clof (人中吕布、马中赤兔、猪中广沪) 于 2007年08月04日11:03:23 星期六 提到:
辛苦啦~~~
: 学员不一样谢谢...
: : 好像和去年的差不多,就是作业不一样。。。。。。
: : .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月04日11:08:55 星期六 提到:
捏捏...谢谢领导关心
: 辛苦啦~~~
: : 学员不一样谢谢...
☆──────────────────────────────────────☆
Clof (人中吕布、马中赤兔、猪中广沪) 于 2007年08月04日11:26:01 星期六 提到:
这。。。。。
: 捏捏...谢谢领导关心
: : 辛苦啦~~~
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月04日15:10:27 星期六 提到:
什么是控制码。。。
: 1. 在Test版练习手动给少量文字加控制码。(该题无须书面提交)
: : 我咋觉得作业也是一样的呢..
☆──────────────────────────────────────☆
chenyiling (dreamer @ Paradise) 于 2007年08月04日15:42:15 星期六 提到:
*[m
: 什么是控制码。。。
: : 1. 在Test版练习手动给少量文字加控制码。(该题无须书面提交)
☆──────────────────────────────────────☆
gdnh (0317·临散忆起|呜哇哇) 于 2007年08月04日15:52:11 星期六 提到:
thank you~~
: 本版精华区x-8-13-1
: : 我还根本不知道走马灯原理涅。。。555
☆──────────────────────────────────────☆
gdnh (0317·临散忆起|呜哇哇) 于 2007年08月04日15:53:33 星期六 提到:
还是不懂。。。
: 比如有
:
:
:
:
:
:
: 三种颜色
: 而其中黄色和蓝色叠加的时候,视觉效果刚好是绿色
: 那么假想两个颜色都是半透明,将他们进行叠加,
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月04日20:30:34 星期六 提到:
momo姐姐啊
其实就是光影的叠加和三原色的原理
: 昨天感冒了,从7点睡到现在-,=
: 错过了上课时间
: : 同不懂-.-
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:11:17 星期天 提到:
额 谁能告诉我那个透明效果的ansi要做成啥样呢
还要自己构图么@@
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
SpiritRain (妖精雨·日月光华同灿烂·孤身一妖闯北京) 于 2007年08月05日10:13:18 星期天 提到:
随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
贴个bluerey的@@
︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 我开 ◥ ︴ ◤ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 却 . ▆▄▂▁▂▄▆ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 有 . ≯¤≮ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 点 . ※ ◢ ◣◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 紧 ▎ ▎███◤◤ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ 张 ▍ ◢ ◣︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ ▍ ◢ \ /︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ ◥▁ ≧≦ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ >_< ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
︴ ︴- bluerey - ︴ ︴ ︴ ︴
: 额 谁能告诉我那个透明效果的ansi要做成啥样呢
: 还要自己构图么@@
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: .................(以下省略)
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:16:31 星期天 提到:
orz...这个难度太大了><
文字有透明效果么?
深浅搭配算么?
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日10:18:18 星期天 提到:
如果觉得难度太大,自己刚入门,这个也算的:)
: orz...这个难度太大了><
: 文字有透明效果么?
: 深浅搭配算么?
: : 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: : 贴个bluerey的@@
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
iloveCamus (收到手写情书·感动) 于 2007年08月05日10:19:56 星期天 提到:
太pp了。。。我啥时候能学到这样就可以了
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
SpiritRain (妖精雨·日月光华同灿烂·孤身一妖闯北京) 于 2007年08月05日10:20:21 星期天 提到:
这个做的是当时最zan的之一,简单的也有啊,根据能力来啦...
: orz...这个难度太大了><
: 文字有透明效果么?
: 深浅搭配算么?
: : 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: : 贴个bluerey的@@
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
SpiritRain (妖精雨·日月光华同灿烂·孤身一妖闯北京) 于 2007年08月05日10:21:09 星期天 提到:
这个mm的作品都很zan的@@
我在想把上一期的作业都放在精华区吧
现在是secret...
: 哇呜,小猫猫可爱的~
: : 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: : 贴个bluerey的@@
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日10:22:08 星期天 提到:
都放在了精华区了,但是ms是另有其人设成了secret
: 这个mm的作品都很zan的@@
: 我在想把上一期的作业都放在精华区吧
: 现在是secret...
: : 哇呜,小猫猫可爱的~
: : .................(以下省略)
☆──────────────────────────────────────☆
BOneFiveER (onlyone) 于 2007年08月05日10:22:17 星期天 提到:
精彩之处在于巧妙的表现了两只手!
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月05日10:23:37 星期天 提到:
瓦 还是最赞创意阿!!
: 太pp了。。。我啥时候能学到这样就可以了
: : 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: : 贴个bluerey的@@
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
tuliptears (郁金香之泪·给亲爱的橙军造一个主场) 于 2007年08月05日10:24:14 星期天 提到:
难的是idea~~~~~
: orz...这个难度太大了><
: 文字有透明效果么?
: 深浅搭配算么?
: : 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: : 贴个bluerey的@@
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: : ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月05日10:24:30 星期天 提到:
re~~
: 难的是idea~~~~~
: : orz...这个难度太大了><
: : 文字有透明效果么?
: : 深浅搭配算么?
: : .................(以下省略)
☆──────────────────────────────────────☆
SpiritRain (妖精雨·日月光华同灿烂·孤身一妖闯北京) 于 2007年08月05日10:25:48 星期天 提到:
mememe...
: 都放在了精华区了,但是ms是另有其人设成了secret
: : 这个mm的作品都很zan的@@
: : 我在想把上一期的作业都放在精华区吧
: : 现在是secret...
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:31:03 星期天 提到:
赫赫 难怪难怪
: 这个做的是当时最zan的之一,简单的也有啊,根据能力来啦...
: : orz...这个难度太大了><
: : 文字有透明效果么?
: : 深浅搭配算么?
: : .................(以下省略)
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:31:32 星期天 提到:
对的对的
不知道要做什么
: 难的是idea~~~~~
: : orz...这个难度太大了><
: : 文字有透明效果么?
: : 深浅搭配算么?
: : .................(以下省略)
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月05日10:31:54 星期天 提到:
娃哈哈,小耗子姐姐当然是很厉害的~~
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月05日10:33:09 星期天 提到:
我想起来猫猫姐那个,也很赞的啊
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
Saule (旋转的指南针·没有终点的旅行者) 于 2007年08月05日10:33:32 星期天 提到:
拉住jj~
(-.= >=-(>.< )
: 难的是idea~~~~~
: : orz...这个难度太大了><
: : 文字有透明效果么?
: : 深浅搭配算么?
: : .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日10:34:09 星期天 提到:
个人觉得啊,仅供参考
灵感有的时候看似是靠自己的一时激发,实际上是来自自己对生活的观察,
或者是自己平时思想的积累
如果多多浏览他人的成功作品,兴许自己也会从中汲取一点点小小的灵感哦
: 对的对的
: 不知道要做什么
: : 难的是idea~~~~~
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月05日10:34:12 星期天 提到:
。。。我当时做的就很简单。。。=,=
: 赫赫 难怪难怪
: : 这个做的是当时最zan的之一,简单的也有啊,根据能力来啦...
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日10:34:30 星期天 提到:
不过已经很赞了
: 。。。我当时做的就很简单。。。=,=
: : 赫赫 难怪难怪
☆──────────────────────────────────────☆
NSgan (0558·令吾勿拔·守身如玉小王子|开始努力) 于 2007年08月05日10:36:33 星期天 提到:
结果和savvy姐姐做的天气预报的左上角几乎一摸一样。。。
其实本来也是想起office莫模板的左上角而作的。。。反正就是缪创意啊。。。-,-
: 不过已经很赞了
: : 。。。我当时做的就很简单。。。=,=
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:39:38 星期天 提到:
我想用线条拼字
可是觉得功力不够@@
: 个人觉得啊,仅供参考
: 灵感有的时候看似是靠自己的一时激发,实际上是来自自己对生活的观察,
: 或者是自己平时思想的积累
: 如果多多浏览他人的成功作品,兴许自己也会从中汲取一点点小小的灵感哦
: : 对的对的
: : 不知道要做什么
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:40:08 星期天 提到:
额 居然05的 就已然说 当时 了。。。
: 。。。我当时做的就很简单。。。=,=
: : 赫赫 难怪难怪
☆──────────────────────────────────────☆
tuliptears (郁金香之泪·给亲爱的橙军造一个主场) 于 2007年08月05日10:41:41 星期天 提到:
≧﹏≦
回掐~~
: 拉住jj~
: (-.= >=-(>.< )
: : 难的是idea~~~~~
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:42:43 星期天 提到:
问个问题
为什么用ansieditor作出来的方块之间都有缝的捏
: 结果和savvy姐姐做的天气预报的左上角几乎一摸一样。。。
: 其实本来也是想起office莫模板的左上角而作的。。。反正就是缪创意啊。。。-,-
: : 不过已经很赞了
☆──────────────────────────────────────☆
tuliptears (郁金香之泪·给亲爱的橙军造一个主场) 于 2007年08月05日10:43:47 星期天 提到:
线条书法字偶觉得灰常难……每次上yanxi看到sylow的“燕曦”两字都会潜意识的膜拜…
: 我想用线条拼字
: 可是觉得功力不够@@
: : 个人觉得啊,仅供参考
: : 灵感有的时候看似是靠自己的一时激发,实际上是来自自己对生活的观察,
: : 或者是自己平时思想的积累
: : 如果多多浏览他人的成功作品,兴许自己也会从中汲取一点点小小的灵感哦
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日10:44:14 星期天 提到:
无缝查看
: 问个问题
: 为什么用ansieditor作出来的方块之间都有缝的捏
: : 结果和savvy姐姐做的天气预报的左上角几乎一摸一样。。。
: : 其实本来也是想起office莫模板的左上角而作的。。。反正就是缪创意啊。。。-,-
☆──────────────────────────────────────☆
tuliptears (郁金香之泪·给亲爱的橙军造一个主场) 于 2007年08月05日10:45:51 星期天 提到:
色块本来就是有缝的,用背景色就没缝了
: 问个问题
: 为什么用ansieditor作出来的方块之间都有缝的捏
: : 结果和savvy姐姐做的天气预报的左上角几乎一摸一样。。。
: : 其实本来也是想起office莫模板的左上角而作的。。。反正就是缪创意啊。。。-,-
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:48:12 星期天 提到:
额
梦想濒临破灭了。。。
: 线条书法字偶觉得灰常难……每次上yanxi看到sylow的“燕曦”两字都会潜意识的膜拜…
: : 我想用线条拼字
: : 可是觉得功力不够@@
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:48:17 星期天 提到:
用了亚
: 无缝查看
: : 问个问题
: : 为什么用ansieditor作出来的方块之间都有缝的捏
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:48:36 星期天 提到:
哦 可能是这个原因吧
试试看去^^
: 色块本来就是有缝的,用背景色就没缝了
: : 问个问题
: : 为什么用ansieditor作出来的方块之间都有缝的捏
☆──────────────────────────────────────☆
tuliptears (郁金香之泪·给亲爱的橙军造一个主场) 于 2007年08月05日10:51:41 星期天 提到:
呃……无缝查看下还有缝的话,可能是你没用最大的完整色块……
: 用了亚
: : 无缝查看
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日10:51:57 星期天 提到:
用最大的方块,并用无缝查看是没有缝的
你是否无缝查看正确?
: 用了亚
: : 无缝查看
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日10:56:00 星期天 提到:
没有用最大的方块。。。。
狂汗。。。
: 用最大的方块,并用无缝查看是没有缝的
: 你是否无缝查看正确?
: : 用了亚
☆──────────────────────────────────────☆
BOneFiveER (onlyone) 于 2007年08月05日11:18:45 星期天 提到:
┼─┐╭╮ ─ ┌┼┐
┘ ┘╰╯ ─ └┴┘
: 我想用线条拼字
: 可是觉得功力不够@@
: : 个人觉得啊,仅供参考
: : 灵感有的时候看似是靠自己的一时激发,实际上是来自自己对生活的观察,
: : 或者是自己平时思想的积累
: : 如果多多浏览他人的成功作品,兴许自己也会从中汲取一点点小小的灵感哦
☆──────────────────────────────────────☆
entrophy ( 于 2007年08月05日11:22:54 星期天 提到:
@@
:
: ┼─┐╭╮ ─ ┌┼┐
: ┘ ┘╰╯ ─ └┴┘
: : 我想用线条拼字
: : 可是觉得功力不够@@
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日11:31:07 星期天 提到:
额 这是什么。。。
:
: ┼─┐╭╮ ─ ┌┼┐
: ┘ ┘╰╯ ─ └┴┘
: : 我想用线条拼字
: : 可是觉得功力不够@@
☆──────────────────────────────────────☆
alicekwok (小老女人@家) 于 2007年08月05日11:44:12 星期天 提到:
這是加油呀
: 额 这是什么。。。
: :
: : ┼─┐╭╮ ─ ┌┼┐
: : ┘ ┘╰╯ ─ └┴┘
☆──────────────────────────────────────☆
JLee (做人关键拎得清!) 于 2007年08月05日12:02:07 星期天 提到:
好吧 我又欧的了。。。
话说我刚交掉作业诶
: 這是加油呀
: : 额 这是什么。。。
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日12:50:36 星期天 提到:
▍
▍
ノ
╰
╰╮╭╯ █
♀ ██ ♂
Together @ MssCmm
当时的作业··几乎没用什么别的东西...只是单纯的自己很喜欢...
: 额 谁能告诉我那个透明效果的ansi要做成啥样呢
: 还要自己构图么@@
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日12:51:12 星期天 提到:
好可爱....><
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日12:56:28 星期天 提到:
啊。。话说我现在在意识到这是用的色彩叠加。。。
:
:
:
: ▍
:
: ▍
:
: ノ
: ╰
:
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日12:58:52 星期天 提到:
...心里一惊以为颜色加错了...
: 啊。。话说我现在在意识到这是用的色彩叠加。。。
: :
: :
: :
: : ▍
: :
: : ▍
: :
: : ノ
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日12:59:45 星期天 提到:
这样看来,好有创意~~!!
我囧了。。
: ...心里一惊以为颜色加错了...
: : 啊。。话说我现在在意识到这是用的色彩叠加。。。
: : .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日13:00:12 星期天 提到:
囧=时尚
: 这样看来,好有创意~~!!
: 我囧了。。
: : ...心里一惊以为颜色加错了...
☆──────────────────────────────────────☆
lxfind (静下心来踏踏实实地学习) 于 2007年08月05日13:01:04 星期天 提到:
那个熊猫烧香没有理解。。
为什么下面这个代码可以在两种颜色间切换呢?
█
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
jingee (Wel~to M_network) 于 2007年08月05日13:01:51 星期天 提到:
背景不是黑色,前面的色块一闪烁,就把背景露出来了
: 那个熊猫烧香没有理解。。
: 为什么下面这个代码可以在两种颜色间切换呢?
: █
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: .................(以下省略)
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日13:02:49 星期天 提到:
用的闪烁效果啊
闪烁是前景在显示与不显示之间调换,
当前景显示的时候,就把背景盖住了,显示前景的颜色
而当前景消失的时候,背景就露出来了,显示背景的颜色
: 那个熊猫烧香没有理解。。
: 为什么下面这个代码可以在两种颜色间切换呢?
: █
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日13:03:14 星期天 提到:
这是一个色块做成的█
前景色是红色,背景色是白色
色块闪烁时候就是前景色和背景色之间的切换
: 那个熊猫烧香没有理解。。
: 为什么下面这个代码可以在两种颜色间切换呢?
: █
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: .................(以下省略)
☆──────────────────────────────────────☆
lxfind (静下心来踏踏实实地学习) 于 2007年08月05日13:11:03 星期天 提到:
唔好像懂了
不过这个色块是怎么弄出来的?似乎没有用ANSI。。
: 这是一个色块做成的█
: 前景色是红色,背景色是白色
: 色块闪烁时候就是前景色和背景色之间的切换
: : 那个熊猫烧香没有理解。。
: : 为什么下面这个代码可以在两种颜色间切换呢?
: : █
: : .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日13:13:33 星期天 提到:
精华区x-8-2,...
当然我是复制粘贴的...或者使用ansieditor··
: 唔好像懂了
: 不过这个色块是怎么弄出来的?似乎没有用ANSI。。
: : 这是一个色块做成的█
: : 前景色是红色,背景色是白色
: : 色块闪烁时候就是前景色和背景色之间的切换
☆──────────────────────────────────────☆
lxfind (静下心来踏踏实实地学习) 于 2007年08月05日13:19:42 星期天 提到:
唔。。。真神奇
我跟色块相见恨晚
: 精华区x-8-2,...
: 当然我是复制粘贴的...或者使用ansieditor··
: : 唔好像懂了
: : 不过这个色块是怎么弄出来的?似乎没有用ANSI。。
☆──────────────────────────────────────☆
linzhihuan (轻滚委招募ing,详情请Ctrl+A) 于 2007年08月05日13:23:01 星期天 提到:
啊啊赞~
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
linzhihuan (轻滚委招募ing,详情请Ctrl+A) 于 2007年08月05日13:25:38 星期天 提到:
已经让人叹为观止了··
: 。。。我当时做的就很简单。。。=,=
: : 赫赫 难怪难怪
☆──────────────────────────────────────☆
applezyz (走自己的路很精彩) 于 2007年08月05日13:49:06 星期天 提到:
满赞的呢!
:
:
:
: ▍
:
: ▍
:
: ノ
: ╰
:
: .................(以下省略)
☆──────────────────────────────────────☆
zijin (风清云淡) 于 2007年08月05日13:51:51 星期天 提到:
就用背景色行不行的?。。。
: 精华区x-8-2,...
: 当然我是复制粘贴的...或者使用ansieditor··
: : 唔好像懂了
: : 不过这个色块是怎么弄出来的?似乎没有用ANSI。。
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日14:28:16 星期天 提到:
然后一见如故...
: 唔。。。真神奇
: 我跟色块相见恨晚
: : 精华区x-8-2,...
: : 当然我是复制粘贴的...或者使用ansieditor··
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日14:31:43 星期天 提到:
可以的,
做成作业要求的里面做出透明效果就可以了
如果有好的想法记得画出来~
: 就用背景色行不行的?。。。
: : 精华区x-8-2,...
: : 当然我是复制粘贴的...或者使用ansieditor··
☆──────────────────────────────────────☆
KingIng (0322·临散而爱·流年) 于 2007年08月05日14:31:50 星期天 提到:
鬼呀~
: 然后一见如故...
: : 唔。。。真神奇
: : 我跟色块相见恨晚
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日14:33:30 星期天 提到:
......这 莫须有
: 鬼呀~
: : 然后一见如故...
☆──────────────────────────────────────☆
KingIng (0322·临散而爱·流年) 于 2007年08月05日14:33:59 星期天 提到:
回来了?
: ......这 莫须有
: : 鬼呀~
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日14:35:02 星期天 提到:
shy~~羞答答的说是啊
: 回来了?
: : ......这 莫须有
☆──────────────────────────────────────☆
KingIng (0322·临散而爱·流年) 于 2007年08月05日14:36:00 星期天 提到:
同shy的说
gxgx bgbg~~
: shy~~羞答答的说是啊
: : 回来了?
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日14:39:07 星期天 提到:
只好说 不要嘛...
: 同shy的说
: gxgx bgbg~~
: : shy~~羞答答的说是啊
☆──────────────────────────────────────☆
KingIng (0322·临散而爱·流年) 于 2007年08月05日14:42:03 星期天 提到:
话说你住哪里?
: 只好说 不要嘛...
: : 同shy的说
: : gxgx bgbg~~
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日14:52:02 星期天 提到:
家··
: 话说你住哪里?
: : 只好说 不要嘛...
☆──────────────────────────────────────☆
KingIng (0322·临散而爱·流年) 于 2007年08月05日14:55:19 星期天 提到:
真冏...
: 家··
: : 话说你住哪里?
☆──────────────────────────────────────☆
goldbean (得到的失去了,看不到的看到了) 于 2007年08月05日16:07:33 星期天 提到:
当时你的那个红唇、、、、
:
:
:
: ▍
:
: ▍
:
: ノ
: ╰
:
: .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日16:48:24 星期天 提到:
shy...好不容易才被记住了....
: 当时你的那个红唇、、、、
: :
: :
: :
: : ▍
: :
: : ▍
: :
: : ノ
: .................(以下省略)
☆──────────────────────────────────────☆
goldbean (得到的失去了,看不到的看到了) 于 2007年08月05日16:53:42 星期天 提到:
当时觉得灰常灰常的惊艳哈哈
: shy...好不容易才被记住了....
: : 当时你的那个红唇、、、、
: : .................(以下省略)
☆──────────────────────────────────────☆
monkei (和时间赛跑的人) 于 2007年08月05日16:53:42 星期天 提到:
估计没有能够忘记的
: shy...好不容易才被记住了....
: : 当时你的那个红唇、、、、
: : .................(以下省略)
☆──────────────────────────────────────☆
tuliptears (郁金香之泪·给亲爱的橙军造一个主场) 于 2007年08月05日16:55:22 星期天 提到:
没法忘记……被shock得刻骨铭心
: shy...好不容易才被记住了....
: : 当时你的那个红唇、、、、
: : .................(以下省略)
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日17:01:30 星期天 提到:
很多人的反应是吓死...
: 当时觉得灰常灰常的惊艳哈哈
: : shy...好不容易才被记住了....
☆──────────────────────────────────────☆
MssCmm (临散伊潸·恋上一声|给点阳光) 于 2007年08月05日17:02:01 星期天 提到:
....囧.....被亲了整脸么....
: 没法忘记……被shock得刻骨铭心
: : shy...好不容易才被记住了....
☆──────────────────────────────────────☆
goldbean (得到的失去了,看不到的看到了) 于 2007年08月05日17:05:48 星期天 提到:
对阿。。。。。。
: 很多人的反应是吓死...
: : 当时觉得灰常灰常的惊艳哈哈
☆──────────────────────────────────────☆
aimerbonbon (病了) 于 2007年08月05日17:24:21 星期天 提到:
赞的~~
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
Saule (旋转的指南针·没有终点的旅行者) 于 2007年08月05日17:26:13 星期天 提到:
你可以向色块王子的方向发展~~
: 唔。。。真神奇
: 我跟色块相见恨晚
: : 精华区x-8-2,...
: : 当然我是复制粘贴的...或者使用ansieditor··
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月05日17:27:17 星期天 提到:
想知道一整块怎么上色
才不会有一个一个小方块或者其他形状呢?
: 随便啦,有能力的就自己构图...看看上一期的作品,有些很zan的..
: 贴个bluerey的@@
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ ▲ ▲ ︴ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ █◣▂▂◢︴◣ ︴ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 幕 ◢ ︴ ◣ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 就 ▍ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 要 ▋ ★ ★ ︴ ▍ ︴ ︴ ︴ ︴ ︴ ︴
: ︴ ︴ ︴ ︴ 拉 ▍ ≡ ♀ ≡ ︴ ▋ ︴ ︴ ︴ ︴ ︴ ︴
: .................(以下省略)
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月05日17:28:58 星期天 提到:
twtw
: 问个问题
: 为什么用ansieditor作出来的方块之间都有缝的捏
: : 结果和savvy姐姐做的天气预报的左上角几乎一摸一样。。。
: : 其实本来也是想起office莫模板的左上角而作的。。。反正就是缪创意啊。。。-,-
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月05日17:29:25 星期天 提到:
@@
: 无缝查看
: : 问个问题
: : 为什么用ansieditor作出来的方块之间都有缝的捏
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日17:30:35 星期天 提到:
看来我们要专门讲讲无缝查看
: @@
: : 无缝查看
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月05日17:32:38 星期天 提到:
那么那些白线是怎么出来的呢?
后来画上去的么?
: 这个是用的整块背景色
: : 想知道一整块怎么上色
: : 才不会有一个一个小方块或者其他形状呢?
: : .................(以下省略)
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月05日17:33:04 星期天 提到:
好啊好啊
一直看到但是其实不知道是怎么回事@@
: 看来我们要专门讲讲无缝查看
: : @@
☆──────────────────────────────────────☆
linzhihuan (轻滚委招募ing,详情请Ctrl+A) 于 2007年08月05日17:33:48 星期天 提到:
是前景,颜色是背景
: 那么那些白线是怎么出来的呢?
: 后来画上去的么?
: : 这个是用的整块背景色
☆──────────────────────────────────────☆
everafter (麦芽糖§运动可以使人在热天不掉眼泪) 于 2007年08月05日17:36:06 星期天 提到:
哦
对的
好像刚才想错了- -
: 是前景,颜色是背景
: : 那么那些白线是怎么出来的呢?
: : 后来画上去的么?
☆──────────────────────────────────────☆
are (君莫舞·阿若) 于 2007年08月05日17:37:48 星期天 提到:
那个不是背景@@
: 那么那些白线是怎么出来的呢?
: 后来画上去的么?
: : 这个是用的整块背景色
☆──────────────────────────────────────☆
soulfox (小o&灵狐~以华丽之名) 于 2007年08月05日17:41:23 星期天 提到:
在稍后的教程中我们会介绍到
: 那么那些白线是怎么出来的呢?
: 后来画上去的么?
: : 这个是用的整块背景色
☆──────────────────────────────────────☆
Politik (01EE|I BELIEVE I CAN FLY) 于 2007年08月06日01:26:04 星期一 提到:
wa!
ansi奥妙无穷啊!!
: ───────────────────────────────────────
: __ ___
: ╱█ __ __ ______ ______ ╱∠-╲
: ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
:  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: 日月光华ANSI版短期培训班 /__ /__
: ▏ ╱/╱
: ____ /▏╱╱ ╲
: ╱◣●\ /\︶╱ \
: .................(以下省略)
☆──────────────────────────────────────☆
linzhihuan (轻滚委招募ing,详情请Ctrl+A) 于 2007年08月06日01:29:35 星期一 提到:
呵呵,作业作业~明天是最后期限了
: wa!
: ansi奥妙无穷啊!!
: : ───────────────────────────────────────
: : __ ___
: : ╱█ __ __ ______ ______ ╱∠-╲
: : ╱__█ █ █ █__ ̄  ̄█ ̄ /╱︵╲\\
: : __╱  ̄█ █╲█ ▁ █ __█__ (╱⌒ \\│
: :  ̄  ̄  ̄  ̄  ̄ ̄ ̄  ̄ ̄ ̄ ╱_ / _)_/
: : 日月光华ANSI版短期培训班 /__ /__
: .................(以下省略)
发信人: soulfox 小o&灵狐 以华丽之名 , 信区: ANSI
标 题: [合集]第二章
发信站: 日月光华 2007年08月24日10:00:04 星期五 , 站内信件
soulfox 小o&灵狐 以华丽之名 于 2007年08月03日20:06:13 星期五 提到
⌒
日月光华ANSI版短期培训班
第 二 章: 控制码解说 颜色的搭配
^
时间安排 2007年08月03日
当班教师 NSgan Saule windream等
'
基本知识
一 什么是ANSI转义序列
ANSI转义序列 都是以一个ASCII 码27号字符开始 该字符在firebird系统下
的输入方式是连按两下ESC 水木的系统也是这样 , 这时一般会出现一个*号
不过它与直接通过Shift 8输入的*号不同 这实际上是一个控制字符 ASCII码
27号字符 这里要称赞一下水木 控制符用了黄颜色的* 这样即使跟普通的
*号同时出现也不会混淆了
ANSI转义序列是区分大小写的 后面我们会详细介绍这一点
在编写文章时连按两下ESC 看到一个*号后 接着输入 [31m暗红 不要输
入那两个引号 现在应该是 *[31m暗红 了 按一下ESC再按一下C键 就能
看见这样的效果 暗红 字的颜色与其他未加控制符的有所不同 其实我们有
很多可以设置的效果 后面将用列表形式给出
发文时按ESC C可以预览效果 大多数情况下看到的和发表出来的实际效果是
一样的 不过ESC C只能看当前一屏 23行 内的效果
⑴
基本知识
二 设置显示属性
显示属性是最常用的一个ANSI控制 可设置的项目包括
前景色 文本颜色
背景色
高亮状态的设置
文本下划线
闪烁文本
反显
BBS上我们可以设置的颜色共有16种 其中8种低亮颜色 8种高亮颜色
为避免其他方面造成的影响 请大家先把终端软件的默认高亮等的设置关掉
cterm 编辑>>系统设置>>高级 确认没选上总是高亮
fterm 选项>>参数设置 确认没有选上默认高亮
sterm 选项>>当前连接设置>>远程登录设置>>外观 确认没选上总是高亮
⑵
基本知识
三 色彩属性 颜色 前景代码 背景代码 背景效果 256色 色值
BBS上有8种颜色可用 分别为 黑色 *[0;30m *[40m 00,00,00
黑,红,绿,黄,蓝,紫,靛,白 灰色 *[1;30m 不可用 80,80,80
由于字符前景有亮和暗的区别 暗红 *[0;31m *[41m 80,00,00
共有16种不同的前景色 背景 亮红 *[1;31m 不可用 FF,00,00
色只允许暗色 因此只有8种 暗绿 *[0;32m *[42m 00,80,00
亮绿 *[1;32m 不可用 00,FF,00
四 色彩代码 暗黄 *[0;33m *[43m 80,80,00
亮黄 *[1;33m 不可用 FF,FF,00
*[0m 关闭各显示属性 暗蓝 *[0;34m *[44m 00,00,80
*[1m 高亮 亮蓝 *[1;34m 不可用 00,00,FF
*[4m 下划线 暗紫 *[0;35m *[45m 80,00,80
*[5m 闪烁 亮紫 *[1;35m 不可用 FF,00,FF
*[7m 反显 暗靛 *[0;36m *[46m 00,80,80
其余色彩代码见右表 要说明 亮靛 *[1;36m 不可用 00,FF,FF
的是 *[m 和*[0m功能基本类 暗白 *[0;37m *[47m C0,C0,C0
似 具体区别下一章会谈到 亮白 *[1;37m 不可用 FF,FF,FF
⑶
基本知识
五 代码简化
一般来说BBS里面一行代码的长度最多254个字符 一个中文字算两个字符 对
于活动看板等的 可能还有更严格的限制 允许的代码长度更短 因此 代码
简化 去除不必要的代码 对于光华当前系统有着较大的作用
我们看一个例子 例 按照先前所说可表示为*[1m*[5m*[36m*[44m例*[0m 这
样就需要占24个字节 我们可以这样简化 *[1;5;36;44m例*[0m 这样就只占
18个字节 控制符之间可以用 ; 相互连接 最后只用一个 m 结尾 碰到
*[31;32;33;42;45;44m这样重复出现前景和背景的情况 我们只看同一类型最
后出现的控制符 也就是*[33;44m 先出现的效果会被后出现的覆盖
六 规范代码
对于代码的规范 最基本的原则是保证代码的通用性 各种代码尤其是下划线
和反色 在不同浏览终端的显示大为不同 因此要尽量避免使用 而闪烁要避
大面积的使用 以保证他人浏览的方便 这里建议若连续几行都有代码控制
要在每一行结束用*[m或*[0m收尾 避免影响到下一行的代码
⑷
色彩理论
一 三原色和三原光
我们日常生活中接触到的颜色系统是三原色
系统 三种基本色为 红 黄 蓝 而电脑 红
显示的颜色系统是三原光系统 三种基本色
为 红 绿 蓝 三原色与三原光是有区别
的 我们今后所说的颜色都是建立在三原光 黄 紫
系统上的 希望大家不要混淆
二 三原光的合成 白
1 红 2 绿 4 蓝 三原光的合成可以用左
3 红 绿 黄 边的表格进行理解 其 绿 蓝
5 红 蓝 紫 包含了合成原理和对应
6 绿 蓝 青 代码 也可以用右边的
7 红 绿 蓝 白 图进行形象记忆 靛
0就是黑色
⑸
色彩理论
三 相邻色和互补色
我们看一下右边的示意图 以白色为中心 黑
色为外延 中圈互相毗邻的颜色我们称之为相 红
邻色 分处白色两端的为互补色 白色与黑色
我们称为基础互补色
黄 紫
相邻色距离最近 混杂在一起时会产生视觉误
差 因此大面积的互相混淆是不推荐的 互补
色距离最远 混杂在一起会产生强烈的对比效 白
果 不易产生视觉误差 黑色和白色可以和任
何颜色搭配而不会产生较大视觉误差
绿 蓝
这里需要提一下黑色与白色间的两种颜色灰色
与暗白 灰色与三种基础色不易产生混淆 而
与三种合成色极易产生混淆 这点在使用上需 靛
要格外注意 暗白与任何一种颜色的搭配都适
中 但大面积的背景暗白可能造成过亮效果
⑹
色彩理论
四 透明效果
我们先前曾给出一张颜色与代码的列表 里面列出了16种颜色在 256色表示下
的代码 这里就不重新列出 而根据颜色代码加法 可以得到多种透明效果
正确的透明效果
错误的透明效果
⑺
知识扩充
一 特殊ANSI转义序列
*[A 光标上移 例如*[3A是上移3行
*[B 光标下移
*[C 光标右移
*[D 光标左移
*[H 光标定位 实际使用时一般为*[m;nH m取1 24 n取1 80
*[s 存储光标位置
*[u 恢复光标位置 回到最近一次*[s所在的地方
*[K 删除到行末 fterm和sterm用当前背景色填充 cterm用默认背景色填充
*[f 作用和用法和*[H完全一样
*[2J 作用是清屏
这些特殊转义序列平时使用较少 主要用于特殊qmd的制作 我们在qmd制作一
节中会详细介绍 但这类qmd可能影响他人阅读 不建议使用
需要注意的是 *[u和*[U是有区别的 使用时请小心谨慎
⑻
knowledge expansion
2. Non-standard ANSI escape sequences
evening building
Cterm Sylow
*[M delay control
*[G ring
*[I change font
*[F It is basically not necessary to fill a certain area with color.
*[U Pop up URL confirmation box
fterm
*[nM delete the n lines starting from the current time
*[nL Insert n blank lines and the cursor position remains unchanged
*[nP delete n spaces
*[n@ Insert n spaces and the cursor position remains unchanged
There are currently many special and non-standard ANSI escape sequences
All columns are prohibited. Please don’t use them arbitrarily.
In fact, you can make many special effects just by using standard sequences.
Special effects. The picture on the right is a good example.
⑼
This assignment
1. Elementary class homework
1. Practice manually adding control codes to a small amount of text in the Test version. This question does not require written submission.
2. Use transparent color effects to create an ANSI written submission in any format
3. Simplify the following code and submit it in writing. Submit the simplified code and display effect.
*[1m*[4m*[5m*[33;45;31mA*[0m*[44;45;32mB*[0m*[42;32mC*[0m
4. Standardize the meaning of the code. Written submission. No limit to the number of words.
2. Improvement class assignments are also available to junior class students who have room for learning.
1. Check out the production methods of the revolving lantern effect by yourself and try to make one. Submit in writing. There is no limit to the form.
After the formal students complete the homework, they submit it to the group leader in the form of a submission. The group leader will submit it to the teacher. If the auditing students
If you wish to submit your homework, please give it to kongkong or any teacher on duty.
Note: If junior class students can complete the advanced class assignments well during the training stage, they may be considered to be awarded a senior student certificate.
⑽
BOneFiveER onlyone mentioned on Friday, August 03, 2007 20:08:55
Ah I hate the revolving door 555
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
NSgan 0558 Tell me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Friday, August 03, 2007 at 20:09:20
uh cft
Classmate, I think if you use a beautiful ANSI picture to express your mood next time, you will get an M instead of
It's an x esc...
: RE first and then watch
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
entrophy mentioned on Friday, August 03, 2007 at 20:13:00
momo..
: uh cft
: Classmate, I think if you use a beautiful ANSI picture to express your mood next time, you will get an M instead of
: is an x esc...
: : RE first and then watch
: : ............. omitted below
mentioned by applezyz on Friday, August 03, 2007 at 20:18:15.
What is the TEST version?
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
entrophy mentioned on Friday, August 03, 2007 20:20:57
There is a version called test@@
: What is the TEST version?
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Friday, August 03, 2007 20:21:13
Zone 0 test version
: What is the TEST version?
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Friday, August 03, 2007 at 20:21:32
Momo, go and find it.
: There is a version called test@@
: : What is the TEST version?
: : ............. omitted below
entrophy mentioned on Friday, August 03, 2007 20:21:48
?
: Momo, go and find it.
: : There is a version called test@@
yahan yahan mentioned on Friday, August 03, 2007 20:27:56
The task is heavy
: What is the TEST version?
: : �..
: : ..
: : ..
: : ..
: : ..
: : ..
: : Sun and Moon Guanghua ANSI version short-term training course [..
: : �..
: : �..
: : ..
: : ............. omitted below
NSgan 0558 told me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Friday, August 03, 2007 at 20:29:10
It’s okay. I remember that I felt the most relaxed when I was doing this chapter.
: The task is heavy
: : What is the TEST version?
BOneFiveER onlyone mentioned on Friday, August 03, 2007 20:30:28
I still don’t know the principle of revolving lantern Nirvana 555
: It’s okay. I remember that I felt the most relaxed when I was doing this chapter.
: :The task is heavy
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Friday, August 03, 2007 at 20:32:39
Highlights of this edition x 8 13 1
: I still don’t know the principle of revolving lantern Nirvana 555
: : It’s okay. I remember that I felt the most relaxed when I was doing this chapter.
mentioned by applezyz on Friday, August 03, 2007 at 20:32:39.
Excellent person
: It’s okay. I remember that I felt the most relaxed when I was doing this chapter.
: :The task is heavy
NSgan 0558 told me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Friday, August 03, 2007 at 20:34:46
, No, there are not many things to master. Basically, understanding is the main thing.
: awesome person
: : It’s okay. I remember that I felt the most relaxed when I was doing this chapter.
mentioned by applezyz on Friday, August 03, 2007 at 20:35:20.
By the way, I would like to ask how to copy and paste ANSI diagrams
:, No. There are not many things to master. Basically, understanding is the main thing.
: : Awesome
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Friday, August 03, 2007 at 20:36:23
The first article at the bottom
: By the way, I would like to ask how to copy and paste ANSI diagrams
: :, No, there are not many things to master. Basically, understanding is the main thing.
windream 0024 2004 Missing is a kind of cake mentioned on Friday, August 03, 2007 at 20:40:31
Look at the code simplification
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Friday, August 03, 2007 at 20:47:21
I understand this
Well then^^
: See the code simplification mentioned
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
BOneFiveER onlyone mentioned on Friday, August 03, 2007 20:47:55
It's a pity that this is not what we do
: I understand this.
: Yeah that^^
: : I saw the code simplification mentioned.
: : ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Friday, August 03, 2007 at 20:49:00
momo umejj
: See the code simplification mentioned
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
iloveCamus received a handwritten love letter and was touched. Mentioned on Friday, August 03, 2007 at 21:01:06
Literate
revolving door
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
iloveCamus received a handwritten love letter and was touched. Mentioned on Friday, August 03, 2007 at 21:27:41
My homework has been done, but I still need to revise it.
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
mentioned by applezyz on Friday, August 03, 2007 at 21:31:05.
Awesome
: My homework has been done, but I still need to revise it.
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
iloveCamus received a handwritten love letter and was touched. Mentioned on Friday, August 03, 2007 at 21:32:23
Not awesome. I was the weakest in the advanced class. I did it the easiest, so it was fast.
: That’s awesome
: : I have finished my homework, but I still need to revise it.
: : ............. omitted below
aimerbonbon sick mentioned on Friday, August 03, 2007 22:14:42
me too...
I need to study it carefully, No.
: I still don’t know the principle of revolving lantern Nirvana 555
: : It’s okay. I remember that I felt the most relaxed when I was doing this chapter.
mentioned by heavenmiss liansiyiyi really lazy on 2007-08-03 23:02:44 Friday
Go have a meal
Come back and do your homework^^
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
jingee Wel to M network mentioned on Friday, August 03, 2007 23:18:34
Marquee is over
I like pandas, although burning incense has damaged many computers
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
IceEyes 0470 iCE Mentioned by 2007-08-03 23:47:04 Friday
Wow
This time MS will take some time
It’s getting more and more fun
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
rainwing Cinema Paradiso mentioned on Saturday, August 04, 2007 10:33:12
I don’t understand the transparency effect
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:33:32
Don't understand.
: I don’t understand the transparency effect
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
rainwing Cinema Paradiso mentioned on Saturday, August 04, 2007 10:34:19
I caught a cold yesterday and slept from 7 o'clock until now.
Missed class time
: I don’t understand either.
: : I don’t understand the transparency effect
: : ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:34:44
mo@@
: I caught a cold yesterday and slept from 7 o'clock until now.
: Missed class time
: : I don’t understand either.
rainwing Cinema Paradiso mentioned on Saturday, August 04, 2007 10:40:42
><
So pitiful
It’s so hot that I can’t turn on the air conditioner or blow the fan.
: mo@@
: : I caught a cold yesterday and slept from 7 o'clock until now.
: : Missed class time
entrophy mentioned on Saturday, August 04, 2007 10:41:42
Eat cold drinks...
: ><
: So pitiful
: It’s so hot that I can’t turn on the air conditioner or blow the fan.
: : mo@@
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 10:42:12
For example, there is
three colors
When yellow and blue are superimposed, the visual effect is just green.
So imagine that both colors are translucent and superimpose them
That's the effect
And this transparent green color actually makes us put it there artificially
: I don’t understand the transparency effect
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:43:07
What about two same colors overlapping?
: For example, there is
:
:
:
:
:
:
: three colors
: When yellow and blue are superimposed, the visual effect is just green.
: Then imagine that both colors are translucent and superimpose them
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 at 10:43:20
What does the code look like?
: What about two same colors overlapping?
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
heavenmiss 爱思伊伊 long term recruitment^^ mentioned on Saturday, August 04, 2007 at 10:43:31
Bright color in the middle
Is that right?
: What about two same colors overlapping?
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:44:14
Can the highlighted color block be entered manually in fterm?
: The middle is bright color
: Is that so?
: : What about two same colors overlapping?
: : ............. omitted below
heavenmiss 爱思伊伊 long-term recruitment^^ mentioned on Saturday, August 04, 2007 at 10:47:15
Actually, I haven’t done color blocking in FTERM yet... I don’t know how to do it.
I always use AnsiEditor...
: Can the highlighted color block be entered manually in fterm?
: : The middle is bright color
: :Is that so?
chenyiling dreamer @ Paradise mentioned on Saturday, August 04, 2007 at 10:48:30
yellow blue green
: For example, there is
:
:
:
:
:
:
: three colors
: When yellow and blue are superimposed, the visual effect is just green.
: Then imagine that both colors are translucent and superimpose them
: ............. omitted below
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 10:48:42
become bright color
The effect of transparent colors is limited. Not the third color after adding all colors exists in ANSI.
: What about two same colors overlapping?
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Saturday, August 04, 2007 at 10:48:59
Yes
: The middle is bright color
: Is that so?
: : What about two same colors overlapping?
: : ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:49:24
emmm I don’t know how you got that bright color@@
: become bright color
:
:
:
:
:
:
:
:
: The effect of transparent color is limited. Not the third color after adding all colors exists in ANSI.
: ............. omitted below
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 10:49:26
If there is no color block input manually, it is more convenient to use ansieditor.
: Can the highlighted color block be entered manually in fterm?
: : The middle is bright color
: :Is that so?
entrophy mentioned on Saturday, August 04, 2007 10:49:41
Yes...
: yellow blue green
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:49:56
oh@@
: If there is no color block input manually, it is more convenient to use ansieditor.
: : The highlighted color block in the middle can be entered manually in fterm?
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 10:50:57
I was going to change it but found that the code was wrong...
: yellow blue green
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:53:22
: become bright color
:
:
:
:
:
:
:
:
: The effect of transparent color is limited. Not the third color after adding all colors exists in ANSI.
Oh I see@@
: ............. omitted below
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 10:54:27
It's fine now. Embarrassing
: For example, there is
:
:
:
:
:
:
: three colors
: When yellow and blue are superimposed, the visual effect is just green.
: Then imagine that both colors are translucent and superimpose them
: ............. omitted below
chenyiling dreamer @ Paradise mentioned on Saturday, August 04, 2007 10:55:45
It's actually pretty easy to remember.
2 4 6
How can there be 3 4 2?
: It’s fine now 囧
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 10:57:14
momo liked it
: It’s fine now. Embarrassing
: : For example, there is
: :
: :
: :
: :
: :
: :
: : three colors
: ............. omitted below
Clof Lu Bu among men, Red Rabbit among horses, Guanghu among pigs mentioned on Saturday, August 04, 2007 at 11:00:06
It seems to be almost the same as last year, but the homework is different.
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 11:00:39
Why do I think homework is the same...
: It seems to be almost the same as last year, but the homework is different.
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 11:00:51
Paste the drawn picture directly
It’s easier to understand just thinking about how to write it
After I posted it, I felt it was awkward, so I quickly changed the code and corrected it.
: Actually, it’s easy to remember.
: 2 4 6
: How can there be 3 4 2?
: :It’s fine now 囧
: : ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 at 11:01:10
Classic tutorial haha
: It seems to be almost the same as last year, but the homework is different.
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
Clof Lu Bu among men, Red Rabbit among horses, Guanghu among pigs mentioned on Saturday, August 04, 2007 at 11:01:36
1. Practice manually adding control codes to a small amount of text in the Test version. This question does not require written submission.
: Why do I think homework is the same...
: : It seems to be almost the same as last year, but the homework is different.
: : ............. omitted below
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Saturday, August 04, 2007 at 11:02:08
Students are different. Thank you...
: It seems to be almost the same as last year, but the homework is different.
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: :
: ............. omitted below
entrophy mentioned on Saturday, August 04, 2007 11:02:23
Well, actually I don’t remember
: 1. Practice manually adding control codes to a small amount of text in the Test version. This question does not require written submission.
: : Why do I think homework is the same...
Clof Lu Bu among men, Red Rabbit among horses, Guanghu among pigs mentioned on Saturday, August 04, 2007 at 11:03:23
Thank you for your hard work
: Students are different. Thank you...
: : It seems to be almost the same as last year, but the homework is different.
: : ............. omitted below
MssCmm Linsan Yilu Mentioned by Falling in Love and Giving Some Sunshine on Saturday, August 04, 2007 at 11:08:55
Thank you for your concern, the leader
: Thank you for your hard work
: :Students are different. Thank you...
Clof Lu Bu among men, Red Rabbit among horses, Guanghu among pigs mentioned on Saturday, August 04, 2007 at 11:26:01
this
: Nip...Thank you for your concern, the leader.
: : Thank you for your hard work
JLee mentioned the key to being a good person on Saturday, August 04, 15:10:27, 2007
What is a control code
: 1. Practice manually adding control codes to a small amount of text in the Test version. This question does not require written submission.
: : Why do I think homework is the same...
chenyiling dreamer @ Paradise mentioned on Saturday, August 04, 2007 15:42:15
*[m
: What is a control code
: : 1. Practice manually adding control codes to a small amount of text in the Test version. This question does not require written submission.
gdnh 0317 Linsan recalled Wuwawa mentioned on Saturday, August 04, 2007 at 15:52:11
thank you
: Highlights of this edition x 8 13 1
: : I still don’t know the principle of revolving lantern Nirvana 555
gdnh 0317 Linsan recalled Wuwawa mentioned on Saturday, August 04, 2007 at 15:53:33
Still don't understand
: For example, there is
:
:
:
:
:
:
: three colors
: When yellow and blue are superimposed, the visual effect is just green.
: Then imagine that both colors are translucent and superimpose them
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Saturday, August 04, 2007 at 20:30:34
Sister momo
In fact, it is the superposition of light and shadow and the principle of the three primary colors.
: I caught a cold yesterday and slept from 7 o'clock until now.
: Missed class time
: : I don’t understand either.
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:11:17
Um, who can tell me how to make the transparent effect of ANSI?
Do you still want to compose your own pictures?@@
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
SpiritRain Fairy Rain, the Sun and Moon are Brilliant, and a Monster Breaks into Beijing Alone, Mentioned on Sunday, August 05, 2007 at 10:13:18
Whatever, if you have the ability, just compose your own pictures... Take a look at the works in the previous issue, some of them are very zany...
Post a bluerey @@
screen
At once
want
pull
I open
but .
have .
point .
tight
open
><
bluerey
: Well, who can tell me how to make the transparent effect of ANSI?
: Do you still need to compose the picture yourself@@
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: ............. omitted below
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:16:31
orz...This is too difficult><
Is the text transparent?
Does the combination of dark and light count?
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 10:18:18
If you find it too difficult and you are just getting started, this can be considered:
: orz...This is too difficult><
: Is the text transparent?
: Does the combination of dark and light count?
: : Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: : Post a bluerey@@
: :
: :
: :
: :
: ............. omitted below
iloveCamus received a handwritten love letter and was touched. Mentioned on Sunday, August 05, 2007 at 10:19:56
It’s so pp. When will I learn how to do this?
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
SpiritRain Fairy Rain, the Sun and Moon are Brilliant, a Alone Monster Breaks into Beijing, mentioned on Sunday, August 05, 2007 at 10:20:21
This one was one of the zaniest at the time, and there are simple ones too, depending on ability...
: orz...This is too difficult><
: Is the text transparent?
: Does the combination of dark and light count?
: : Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: : Post a bluerey@@
: :
: :
: :
: :
: ............. omitted below
SpiritRain Fairy Rain, The Sun and Moon are Brilliant, A Alone Monster Breaks into Beijing, mentioned on Sunday, August 05, 2007 at 10:21:09
This mm’s works are all very zany @@
I'm thinking of putting all the homework from the previous issue in the highlight area.
Now is the secret...
: Wow, the kitten is so cute
: : Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: : Post a bluerey @@
: :
: :
: :
: :
: : act
: : At once
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 10:22:08
They are all placed in the highlight area, but another person in MS has set it as a secret.
: This mm’s works are all very zany@@
: I’m thinking of putting all the assignments from the previous issue in the highlight area.
: Now it’s secret...
: : Wow, the kitten is so cute
: : ............. omitted below
BOneFiveER onlyone mentioned on Sunday, August 05, 2007 10:22:17
The wonderful thing is that the two hands are cleverly expressed
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
entrophy mentioned on Sunday, August 05, 2007 10:23:37
Wa, this is still the most creative idea.
: It’s too pp. When will I learn how to do this?
: : Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: : Post a bluerey @@
: :
: :
: :
: :
: : act
: : At once
: ............. omitted below
Tuliptears Tulip Tears Build a home court for the dear Orange Army mentioned on Sunday, August 05, 2007 at 10:24:14
The hard thing is the idea
: orz...This is too difficult><
: Is the text transparent?
: Does the combination of dark and light count?
: : Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: : Post a bluerey@@
: :
: :
: :
: :
: ............. omitted below
entrophy mentioned on Sunday, August 05, 2007 at 10:24:30
re
: The difficult thing is the idea
: : orz...This is too difficult><
: : Is the text transparent?
: : Does the combination of dark and light count?
: : ............. omitted below
SpiritRain Fairy Rain, the Sun and the Moon are Brilliant, a Alone Monster Breaks into Beijing, mentioned on Sunday, August 05, 2007 at 10:25:48
mememe...
: They are all placed in the highlight area, but another person in MS has set it as a secret.
: : This mm’s works are all very zany@@
: : I'm thinking of putting all the assignments from the previous issue in the highlight area.
: : Now it’s secret...
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:31:03
Hehe, no wonder, no wonder
: This one was one of the most popular ones at the time. There are also simple ones. It depends on your ability...
: : orz...This is too difficult><
: : Is the text transparent?
: : Does the combination of dark and light count?
: : ............. omitted below
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:31:32
Right, right
don't know what to do
: The difficult thing is the idea
: : orz...This is too difficult><
: : Is the text transparent?
: : Does the combination of dark and light count?
: : ............. omitted below
NSgan 0558 Tell me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Sunday, August 05, 2007 at 10:31:54
Wahaha, Little Mouse Sister is certainly very powerful
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
NSgan 0558 told me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Sunday, August 05, 2007 at 10:33:09
I remember the one from Maomao Sister was also very good.
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
Saule Rotating Compass Traveler Without End mentioned on Sunday, August 05, 2007 10:33:32
hold jj
. > >.<
: The difficult thing is the idea
: : orz...This is too difficult><
: : Is the text transparent?
: : Does the combination of dark and light count?
: : ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 10:34:09
Personally I think it’s for reference only
Inspiration sometimes seems to come from one's own momentary stimulation, but in fact it comes from one's own observation of life.
Or the accumulation of my usual thoughts
If you browse more of other people's successful works, maybe you will also draw a little inspiration from them.
: Right, right
: Don’t know what to do
: : The difficult thing is the idea
NSgan 0558 told me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Sunday, August 05, 2007 at 10:34:12
What I did at that time was very simple,
: Hehe, no wonder, no wonder
: : This one was one of the most popular ones at the time. There are also simple ones. It depends on your ability...
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 10:34:30
But it’s already great
: What I did at that time was very simple,
: : Hehe, no wonder, no wonder
NSgan 0558 told me not to pull it out. The little prince who keeps his body like jade started to work hard. Mentioned on Sunday, August 05, 2007 at 10:36:33
The result is almost exactly the same as the upper left corner of the weather forecast made by savvy sister.
In fact, I originally thought of the upper left corner of the Office Mo template. Anyway, it’s Miao Creative.
: But it’s already great
: : What I did at that time was very simple,
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:39:38
I want to spell words with lines
But I feel like my skills are not enough@@
: Personal opinion, for reference only
: Sometimes inspiration seems to come from one’s own momentary inspiration, but in fact it comes from one’s own observation of life.
: Or the accumulation of my usual thoughts
: If you browse more of other people's successful works, maybe you will also draw a little inspiration from them.
: : Right, right
: : Don’t know what to do
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:40:08
Um, I'm actually 05. I already said it was at that time.
: What I did at that time was very simple,
: : Hehe, no wonder, no wonder
Tuliptears Tulip Tears Build a home court for the dear Orange Army mentioned on Sunday, August 05, 2007 at 10:41:41
pinch back
: hold jj
: . > >.<
: : The difficult thing is the idea
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:42:43
ask a question
Why are there gaps between the blocks made with Ansieditor?
: The result is almost exactly the same as the upper left corner of the weather forecast made by savvy sister.
: Actually, I originally thought of the upper left corner of the Office Mo template. Anyway, it’s Miao Creative.
: : But it’s already great
Tuliptears Tulip Tears Build a home court for the dear Orange Army mentioned on Sunday, August 05, 2007 at 10:43:47
I find it very difficult to create line calligraphy characters. Every time I go to Yanxi and see Sylow’s Yan Xi, I will subconsciously admire the two characters.
: I want to spell words with lines
: But I feel my skills are not enough@@
: : Personal opinion, just for reference
: : Sometimes inspiration seems to come from one’s own momentary inspiration, but in fact it comes from one’s own observation of life.
: : Or the accumulation of my usual thoughts
: : If you browse more of other people's successful works, maybe you will also draw a little inspiration from them.
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 10:44:14
Seamless viewing
:Ask a question
: Why are there gaps between the blocks made with Ansieditor?
: : The result is almost exactly the same as the upper left corner of the weather forecast made by savvy sister
: : Actually, I originally thought of the upper left corner of the Office Mo template. Anyway, it’s Miao Creative.
Tuliptears Tulip Tears Build a home court for the dear Orange Army mentioned on Sunday, August 05, 2007 at 10:45:51
The color block is already seamed, but when you use the background color, there is no seam.
:Ask a question
: Why are there gaps between the blocks made with Ansieditor?
: : The result is almost exactly the same as the upper left corner of the weather forecast made by savvy sister
: : Actually, I originally thought of the upper left corner of the Office Mo template. Anyway, it’s Miao Creative.
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:48:12
Forehead
The dream is on the verge of being shattered
: Line calligraphy is very difficult. Every time I go to yanxi and see sylow's "Yan Xi", I will subconsciously worship the two characters.
: : I want to spell words with lines
: : But I feel my skills are not enough@@
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:48:17
Used Ya
: Seamless viewing
: :Ask a question
: : Why are there gaps between the blocks made with Ansieditor?
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:48:36
Oh, maybe this is the reason
Give it a try ^^
: The color block is already seamed, but when you use the background color, there is no seam.
: :Ask a question
: : Why are there gaps between the blocks made with Ansieditor?
Tuliptears Tulip Tears Build a home court for the dear Orange Army mentioned on Sunday, August 05, 2007 at 10:51:41
Uh, if there are still seams under the seamless view, it may be that you didn't use the largest complete color block.
: Used Asia
: : Seamless viewing
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 10:51:57
Use the largest square and use seamless to see that there are no seams.
Are you viewing seamlessly correctly?
: Used Asia
: : Seamless viewing
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 10:56:00
Not using the largest block
Sweating violently
: Use the largest square and use seamless to see that there is no seam.
: Do you view seamlessly correctly?
: : Used Asia
BOneFiveER onlyone mentioned on Sunday, August 05, 2007 11:18:45
: I want to spell words with lines
: But I feel my skills are not enough@@
: : Personal opinion, just for reference
: : Sometimes inspiration seems to come from one’s own momentary inspiration, but in fact it comes from one’s own observation of life.
: : Or the accumulation of my usual thoughts
: : If you browse more of other people's successful works, maybe you will also draw a little inspiration from them.
entrophy mentioned on Sunday, August 05, 2007 11:22:54
@@
:
:
:
: : I want to spell words with lines
: : But I feel my skills are not enough@@
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 11:31:07
Um what is this
:
:
:
: : I want to spell words with lines
: : But I feel my skills are not enough@@
alicekwok little old woman@家 mentioned on Sunday, August 05, 2007 at 11:44:12
Come on, come on
: Um what is this
: :
: :
: :
JLee mentioned the key to being a good person on Sunday, August 05, 2007 at 12:02:07
Okay, I'm European again
By the way, I just handed in my homework.
: Come on, come on
: : Uh what is this
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 12:50:36
ノ
Together@MssCmm
I almost didn’t use anything else for my homework at that time... I just simply liked it...
: Well, who can tell me how to make the transparent effect of ANSI?
: Do you still need to compose the picture yourself@@
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: ............. omitted below
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 12:51:12
So cute....><
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 12:56:28
Ah, by the way, I realize now that this is using color overlay.
:
:
:
:
:
:
:
: ノ
:
:
: ............. omitted below
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 12:58:52
...I was shocked and thought I added the wrong color...
: Ah, now I realize that this is using color overlay
: :
: :
: :
: :
: :
: :
: :
: : ノ
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 12:59:45
This looks so creative
I'm embarrassed
: ...I was shocked and thought I added the wrong color...
: : Ah, now I realize that this is a color overlay
: : ............. omitted below
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 13:00:12
embarrassing fashion
: It seems so creative
: I'm embarrassed
: : ...I was shocked and thought I added the wrong color...
lxfind Calm down and study in a down-to-earth manner. Mentioned on Sunday, August 05, 2007 at 13:01:04
That panda burning incense didn’t understand
Why can the following code switch between two colors?
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
jingee Wel to M network mentioned on Sunday, August 05, 2007 13:01:51
The background is not black. When the color block in front flashes, the background is exposed.
: I didn’t understand that panda burning incense.
: Why can the following code switch between two colors?
:
: :
: :
: :
: :
: : ⌒
: :
: ............. omitted below
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 13:02:49
Use the flashing effect?
Flickering is when the foreground switches between showing and not showing.
When the foreground is displayed, the background is covered and the color of the foreground is displayed.
And when the foreground disappears, the background is revealed, showing the color of the background.
: I didn’t understand that panda burning incense.
: Why can the following code switch between two colors?
:
: :
: :
: :
: :
: : ⌒
: :
: ............. omitted below
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Sunday, August 05, 2007 13:03:14
This is made of a color block
The foreground color is red and the background color is white
When the color block flashes, it switches between the foreground color and the background color.
: I didn’t understand that panda burning incense.
: Why can the following code switch between two colors?
:
: :
: :
: :
: :
: : ⌒
: :
: ............. omitted below
lxfind Calm down and study in a down-to-earth manner. Mentioned on Sunday, August 05, 2007 at 13:11:03
I don't think I understand
But how did you get this color block? It seems that ANSI was not used.
: This is made of a color block
: The foreground color is red and the background color is white
: When the color block flashes, it switches between the foreground color and the background color.
: : I didn’t understand that panda burning incense.
: : Why can the following code switch between two colors?
: :
: : ............. omitted below
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Sunday, August 05, 2007 13:13:33
Essence area x 8 2...
Of course I copied and pasted it...or used ansieditor
: I don’t think I understand
: But how did you get this color block? It seems that ANSI was not used.
: : This is made of a color block
: : The foreground color is red and the background color is white
: : When the color block flashes, it switches between the foreground color and the background color.
lxfind Calm down and study in a down-to-earth manner. Mentioned on Sunday, August 05, 2007 at 13:19:42
Hmm, that's amazing
I met the color block very late
: Essence area x 8 2...
: Of course I copied and pasted it...or used ansieditor
: : I don’t seem to understand.
: : But how did you get this color block? It seems that ANSI was not used.
linzhihuan Light Rolling Committee Recruitment For details, please Ctrl A mentioned on Sunday, August 05, 2007 13:23:01
Ah ah like
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
linzhihuan Light Rolling Committee Recruitment For details, please Ctrl A mentioned on Sunday, August 05, 2007 at 13:25:38
It's already breathtaking
: What I did at that time was very simple,
: : Hehe, no wonder, no wonder
applezyz It's wonderful to go your own way mentioned on Sunday, August 05, 2007 13:49:06
Full of praise
:
:
:
:
:
:
:
: ノ
:
:
: ............. omitted below
zijin Feng Qingyundan mentioned on Sunday, August 05, 2007 at 13:51:51
Can I just use the background color?
: Essence area x 8 2...
: Of course I copied and pasted it...or used ansieditor
: : I don’t seem to understand.
: : But how did you get this color block? It seems that ANSI was not used.
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 14:28:16
Then we hit it off...
: Well, that’s amazing
: I met the color block late.
: : Essence area x 8 2...
: :Of course I copy and paste...or use ansieditor
MssCmm Linsan Yilu fell in love and gave me some sunshine. Mentioned on Sunday, August 05, 2007 at 14:31:43
OK
Just make a transparent effect inside the assignment requirements.
If you have a good idea, remember to draw it
: Is it okay to just use the background color?
: : Essence area x 8 2...
: :Of course I copy and paste...or use ansieditor
KingIng 0322 Love before separation, fleeting time, mentioned on Sunday, August 05, 2007 at 14:31:50
Damn it
: Then we hit it off as old friends...
: : Well, that’s amazing
: : I met the color block late.
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Sunday, August 05, 2007 at 14:33:30
......This is unnecessary
: Damn it
: : Then we fell in love with each other at first sight...
KingIng 0322 Love before separation, fleeting time, mentioned on Sunday, August 05, 2007 at 14:33:59
came back?
: ...This is unnecessary
: : Damn it
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 14:35:02
shy said yes shyly
: came back?
: :......This is unnecessary
KingIng 0322 Love before separation, fleeting time, mentioned on Sunday, August 05, 2007 at 14:36:00
Same as shy said
gxgx bgbg
: shy said yes shyly
: : came back?
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 14:39:07
I just have to say no...
: Same as shy said
: gxgx bgbg
: : shy Say yes shyly
KingIng 0322 Love before separation, fleeting time, mentioned on Sunday, August 05, 2007 at 14:42:03
By the way, where do you live?
: I can only say no...
: : Same as shy said
: : gxgx bgbg
MssCmm Linsan Yilu fell in love and gave me some sunshine. Mentioned on Sunday, August 05, 2007 at 14:52:02
Home
: By the way, where do you live?
: : I can only say no...
KingIng 0322 Love before separation, fleeting time, mentioned on Sunday, August 05, 2007 at 14:55:19
So cool...
: Home
: : By the way, where do you live?
mentioned by goldbean on Sunday, August 05, 2007 at 16:07:33, what was gained is lost and what cannot be seen is seen
That red lip you had at that time
:
:
:
:
:
:
:
: ノ
:
:
: ............. omitted below
MssCmm Linsan Yilu fell in love and gave some sunshine. Mentioned on Sunday, August 05, 2007 at 16:48:24
shy...it took a lot of effort to be remembered...
: That red lip you had at that time
: :
: :
: :
: :
: :
: :
: :
: : ノ
: ............. omitted below
mentioned by goldbean on Sunday, August 05, 2007 at 16:53:42, what was gained is lost and what cannot be seen is seen
At that time, I felt so gray and so amazing, haha
: shy...It took a lot of effort to be remembered...
: : That red lip you had at that time
: : ............. omitted below
monkei race against time mentioned on Sunday, August 05, 2007 16:53:42
Probably nothing that can be forgotten
: shy...It took a lot of effort to be remembered...
: : That red lip you had at that time
: : ............. omitted below
Tuliptears Tulip Tears Build a home court for the dear Orange Army mentioned on Sunday, August 05, 2007 16:55:22
I can’t forget being shocked so deeply that I will never forget it.
: shy...It took a lot of effort to be remembered...
: : That red lip you had at that time
: : ............. omitted below
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Sunday, August 05, 2007 at 17:01:30
Many people's reaction is to be scared to death...
: At that time, I thought it was so shocking, haha
: : shy...It took a lot of effort to be remembered...
MssCmm Linsan Yilu Fall in love and give some sunshine mentioned on Sunday, August 05, 2007 17:02:01
....Embarrassed...I was kissed all over my face...
: I can’t forget being shocked so deeply that I will never forget it.
: : shy...It took a lot of effort to be remembered...
mentioned by goldbean on Sunday, August 05, 2007 at 17:05:48, what was gained is lost and what cannot be seen is seen.
Yes
: Many people's reaction is to be scared to death...
: : At that time, I thought it was so shocking, haha
aimerbonbon sick mentioned on Sunday, August 05, 2007 17:24:21
Like it
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
Saule Rotating Compass Traveler Without End mentioned on Sunday, August 05, 2007 17:26:13
You can develop in the direction of the Prince of Color Blocks
: Well, that’s amazing
: I met the color block late.
: : Essence area x 8 2...
: :Of course I copy and paste...or use ansieditor
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Sunday, August 05, 2007 at 17:27:17
I want to know how to color a whole piece
There won’t be small squares or other shapes.
: Whatever. If you have the ability, just compose your own pictures... Take a look at the works in the previous issue. Some of them are very zany...
: Post a bluerey@@
:
:
:
:
: act
: At once
: want
: pull
: ............. omitted below
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Sunday, August 05, 2007 at 17:28:58
twtw
:Ask a question
: Why are there gaps between the blocks made with Ansieditor?
: : The result is almost exactly the same as the upper left corner of the weather forecast made by savvy sister
: : Actually, I originally thought of the upper left corner of the Office Mo template. Anyway, it’s Miao Creative.
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Sunday, August 05, 2007 at 17:29:25
@@
: Seamless viewing
: :Ask a question
: : Why are there gaps between the blocks made with Ansieditor?
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 at 17:30:35
It seems that we want to talk specifically about seamless viewing
: @@
: : Seamless viewing
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Sunday, August 05, 2007 at 17:32:38
So how did those white lines come out?
Were you painted on it later?
: This is the entire background color used
: : I want to know how to color a whole piece
: : There won’t be small squares or other shapes.
: : ............. omitted below
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Sunday, August 05, 2007 at 17:33:04
Yeah
I keep seeing it but I don’t know what’s going on@@
: It seems that we want to talk specifically about seamless viewing
: : @@
linzhihuan Light Rolling Committee Recruitment For details, please Ctrl A mentioned on Sunday, August 05, 2007 17:33:48
is the foreground color is the background
: So how did those white lines come out?
: Were they painted on later?
: : This is the entire background color used
everafter Maltose Exercise can prevent people from crying on hot days. Mentioned on Sunday, August 05, 2007 at 17:36:06
oh
Yes
It seems like I thought wrong just now
: is the foreground color is the background
: : So how did those white lines come out?
: :Did you paint it on later?
are Junmowu Aruo mentioned on Sunday, August 05, 2007 at 17:37:48
That’s not the background@@
: So how did those white lines come out?
: Were they painted on later?
: : This is the entire background color used
Soulfox Xiaoo&Linghu mentioned in the name of gorgeous on Sunday, August 05, 2007 17:41:23
In a later tutorial we will introduce
: So how did those white lines come out?
: Were they painted on later?
: : This is the entire background color used
Politik 01EE I BELIEVE I CAN FLY mentioned on Monday, August 06, 2007 01:26:04
wa!
ansi has endless mysteries
:
:
:
:
: ⌒
:
: Sun and Moon Guanghua ANSI version short-term training course
:
:
:
: ............. omitted below
linzhihuan Light Rolling Committee Recruitment For details, please Ctrl A mentioned on Monday, August 06, 2007 01:29:35
Haha, homework, tomorrow is the deadline.
:wa!
: ansi is so mysterious
: :
: :
: :
: :
: : ⌒
: :
: : Sun and Moon Guanghua ANSI version short-term training course
: ............. omitted below