<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[□绯樱 ]]></title>
<description><![CDATA[舞绯樱--SAKURA]]></description>
<link>http://269813046.qzone.qq.com</link>
<lastBuildDate>Sat, 28 Nov 2009 08:29:33 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Thu, 26 Nov 2009 14:12:13 GMT</pubDate>

<item>
<title><![CDATA[[转]orale]]></title>
<link>http://269813046.qzone.qq.com/blog/1259244733</link>
<description><![CDATA[ <br><span style="color:#ff0000;line-height:1.8em;"><span style="font-style:italic"><wbr />oracle总结</span><wbr /></span><wbr />一.Oracle数据库中常用的数据类型 <br>varchar2(长度)可变长字符串 <br>char(长度) 定长 <br>number()表示整数或者浮点数number(8) number(8,2) <br>clog 字符的大对象 <br>blog 二进制的大对象 <br><br>二.数据库查询 <br>1）SELECT语句 <br>从表中提取查询数据.语法为SELECT [DISTINCT] {column1,column2,…} FROM tablename WHERE {conditions} GROUP BY {conditions} ORDER BY {expressions} [ASC/DESC]; <br>说明：SELECT子句用于指定检索数据库的中哪些列，FROM子句用于指定从哪一个表或视图中检索数据。 <br>2）WHERE子句。 <br>WHERE子句用来选择符合条件的的记录. <br>like '...' 通配查询 _,% <br>between ... and ... ,表示结果在这之间，between and是一个闭区间。 <br>!=，&lt;&gt;，^=，这三个都可以表示不等于。 <br>in (va1,val2,...) 判断结果是否在这个集合中存在 。 <br>like '...' 字符串通配查询，'%'表示0或多个字符，'_'表示一个字符。 <br>... and ... 表示只有两个条件同时满足 <br>... or ... 表示条件只要满足其中之一就可以 <br>all ... 是要求都满足条件。 <br>not .....，则是可以与以上的条件产生反效果。 <br>... is null 使用来判断值是不是空。 <br>3) ORDER BY子句 <br>ORDER BY 子句使得SQL在显示查询结果时将各返回行按顺序排列，返回行的排列顺序由ORDER BY 子句指定的表达式的值确定。 <br>ASC（默认，升序） DESC（降序） <br>order by 目标列名（别名） 排序顺序（不写排序顺序，会默认为升序排序） <br>例：select first_name from s_emp order by first_name; <br>select first_name from s_emp order by first_name desc; <br><br>三.SQL常用的命令分类及例子 <br>数据定义语言：create（创建）、alter（更改）和drop（删除）命令。 <br>数据操纵语言：insert（插入）、select（选择）、delete（删除）和update（更新）命令。 <br>事务控制语言：commit（提交）、savepoint（保存点）和rollback（回滚）命令。 <br>数据控制语言：grant（授予）和revoke（回收）。 <br>1.数据定义语言举例： <br>SQL&gt; create table myTab(no number(4),name varchar2(20));创建一个名为myTab的表，包含两列no和name； <br>SQL&gt; alter table myTab modify (name varchar2(25));修改myTab中的name列，使此列能容纳25个字符； <br>SQL&gt; alter table myTab add (tel_no varchar2(20));给表myTab增加一列tel_no； <br>SQL&gt; alter table myTab drop column tel_no;删除表myTab的tel_no列; <br>SQL&gt; drop table myTab;删除表myTab； <br>SQL&gt; truncate table myTab;删除表myTab中的所有行（截断表）,注意:不可以回滚。 <br><br>2.数据操纵语言举例： <br>SQL&gt; insert into myTab values(‘001’,’John’); <br>向表myTab中插入一行数据； <br>SQL&gt; select distinct salary “薪水” from s_emp where salary&gt;1500 order by sal desc; <br>选择表中salary大于1500的数据，以别名“薪水”显示并按照salary的降序进行排列输出； <br>SQL&gt; create table empa as select empno,ename,job,sal from emp; <br>从emp表中选择“empno,ename,job,sal”四列的数据建立新表empa; <br>SQL&gt; create table empa as select * from emp where 1=2; <br>使用一个假条件根据现有表emp创建一个只包含结构的空表empa； <br>SQL&gt; delete from empa where sal&lt;1500; <br>删除表empa中sal小于1500的行； <br>SQL&gt; update empa set sal=1500 where sal&lt;1500;更新，将表empa中sal小于1500的行的sal值全部改为1500。 <br><br>3.事务控制语言举例： <br>SQL&gt; commit;用于提交并结束事务处理； <br>SQL&gt; savepoint mark1;保存点类似于标记，用来标记事务中可以应用回滚的点； <br>SQL&gt; rollback to savepoint mark1;回滚到保存点mark1。 <br><br>四.Oracle数据库函数 <br>注意:dual表(虚表)是专门用于函数测试和运算的. <br>1.字符函数 <br>   字符是大小写敏感的 <br>   转小写 lower(字段名) <br>   转大写 upper(字段名) <br>   首字母大写 initcap(字段名) <br>   字符串拼接 concat(字段1, 字段2) <br>   截取子串 substr(字段名, 起始位置，取字符个数) <br>例: select first_name,substr(first_name,2,2) sub from s_emp;（从名字的第二个字符开始取两个字符） <br>select first_name,substr(first_name,-2,2) sub from s_emp;（从名字的倒数第二个字符开始取两个字符） <br>2.数值函数 <br>   四舍五入函数 round(数据,保留到小数点后几位) <br>   1表示保留到小数点后一位，-1表示保留到小数点前一位。 <br>   例：select round(15.36,1) from dual; <br>   截取数值函数 trunc(数据，保留到小数点后几位) <br>   例：select trunc(123.456,1) from dual; <br>截取到小数点后一位,注意:与round函数不同,不会四舍五入。 <br>3.日期函数 <br>   缺省日期格式，日-月-年 dd-mon-rr <br>   修改当前会话的日期格式，会按照指定的格式输出日期 <br>   alter session set nls_date_format='yyyy mm dd hh24:mi:ss'; <br>   返回当前日期 sysdate <br>   例：select sysdate from dual; <br>4.不同数据类型间转换函数 <br>   将日期转成字符 tochar(date,'日期格式') <br>   日期格式要用有效格式，格式大小写敏感 'yyyy mm dd hh24:mi:ss'(标准日期格式),'year'(年的全拼),'month'(月的全拼)，'day'(星期的全拼)，'ddspth' (日期的全拼) <br>   例：select to_char(sysdate,'yyyy mm dd hh24:mi:ss')from dual; <br>select to_char(sysdate,'year month day ddspth')from dual; <br>   将字符串转成日期 to_date('...','日期格式') <br>   例：select to_char(to_date('2006 11 03','yyyy mm dd'),'dd-month-yy') from dual； <br><br>五.表连接（关联查询） <br>等值连接 <br>select table1.column1，table2.column2 <br>from table1 t1，table2 t2 <br>where t1.column3=t2.column4; <br>表连接时，当表与表之间有同名字段时，可以加上表名或表的别名，加以区分，使用时要用表名.字段名或表别名.字段名（列名）。当表的字段名是唯一时，可以不用加上表名或表的别名。 <br>注意：当为表起了别名，就不能再使用表名.字段名了。 <br>例如：select e.first_name ||’ ’|| e.last_name name, <br>d.name dept_name <br>from s_emp e, s_dept d <br>where e.dept_id=d.id; <br><br>非等值连接 <br>select [表别名1.字段名1]，[表别名2.字段名2],... <br>from 表1 表别名1 ，表2 表别名2 <br>where 表别名1.字段名3 ..... 表别名2.字段名4 <br>....可以使比较运算符，也可以使其他的除了'='的运算符 <br>例：select first_name, salary <br>from s_emp <br>where salary between 1000 and 2000; <br><br>自连接 <br>把一个表的两个字段关系转换成两个表字段之间的关系. <br>select [表别名1.字段名1]，[表别名2.字段名2],... <br>from 表1 表别名1 ，表1 表别名2 <br>where 表别名1.字段名3=表别名2.字段名4; <br>例：select a.first_name ename,b.first_name cname <br>from s_emp a,s_emp b <br>where a.manager_id=b.id; <br><br>外连接 <br>使用一张表中的所有记录去和另一张表中的记录按条件匹配(空值也会匹配)这个表中的所有记录都会显示。 <br>//想在哪边模拟记录就在哪边加上(+) <br>1. LEFT OUTER JOIN：左外连接 <br>SELECT e.last_name, e.dept_id, d.name <br>FROM s_emp e <br>LEFT OUTER JOIN s_dept d <br>ON (e.dept_id = d.id); <br>等价于 <br>SELECT e.last_name, e.dept_id, d.name <br>FROM s_emp e, s_dept d <br>WHERE e.dept_id=d.id(+); <br>结果为：所有员工及对应部门的记录，包括没有对应部门编号dept_id的员工记录。 <br>2. RIGHT OUTER JOIN：右外连接 <br>SELECT e.last_name, d.name <br>FROM s_emp e <br>RIGHT OUTER JOIN s_dept d <br>ON (e.dept_id = d.id); <br>等价于 <br>SELECT e.last_name,d.name <br>FROM s_emp e, s_dept d <br>WHERE e.dept_id(+)=d.id; <br>结果为：所有员工及对应部门的记录，包括没有任何员工的部门记录。 <br>3. FULL OUTER JOIN：全外关联 <br>SELECT e.dept_id,d.id <br>FROM s_emp e <br>FULL OUTER JOIN s_dept d <br>ON (e.dept_id = d.id); <br><br>结果为：所有员工及对应部门的记录，包括没有对应部门编号department_id的员工记录和没有任何员工的部门记录。 <br>六.组函数 <br>group by把 select 的结果集分成几个小组，这个group by 子句可以跟在 select 语句后或是 having前面。group by子句也会触发排序操作，会按分组字段排序。 <br>select [组函数或分组的字段名]... from 表名 group by [字段名1],[字段名2],.....； <br>例：select avg(salary) from s_emp group by dept_id; <br>注意：组函数会忽略空值，但是count(*)除外，他会把空记录也记录在内。avg和sum这两个函数的参数只能是number型的。 <br>以下所提到的函数可以使用任意类型做参数。 <br>max(..),min(..)求最大值和最小值， <br>count(*)统计表中记录数。 <br>例：select max(b.name),avg(a.salary), max(c.name) <br>from s_emp a,s_dept b,s_region c <br>where a.dept_id=b.id <br>and b.region_id=c.id <br>group by b.id; <br>注意：只要写了group by子句，select后就只能用group by之后的字段或者是组函数。having子句可以过滤组函数结果或是分组的信息，并且写在group by子句后。 <br><br>七.子查询 <br>可以嵌在sql语句中的select语句。 <br>在select语句中嵌套子查询时，会先执行子查询。一般的会将子查询放在运算符的右边。 <br>注意：在使用子查询时，要注意这个运算符是单行的（也就是只能是单值），还是多行运算符（范围，多值）。配合使用子查询返回的结果必须符合运算符的用法。 <br>例: <br>select first_name||' '||last_name name <br>from s_emp <br>where title in (select title from s_emp <br>where dept_id=42); <br>查询和42部门员工职位相同的所有员工的姓名 <br><br>八.约束 <br>针对表中的字段进行定义的。 <br>primary key（主键约束 PK）保证实体的完整性，保证记录的唯一 <br>主键约束，唯一且非空，并且每一个表中只能有一个主键，有两个字段联合作为主键时，将两个字段放在一起唯一标识记录，叫做联合主键。 <br>主键约束的定义： <br>第一种定义形式： <br>create table test(c number primary key );        列级约束 <br>第二种定义形式： <br>create table test(c number , primary key(c) ) ;        表级约束 <br>create table test(c1 number constraints   pk_c1 primary key );   此约束有名字: pk_c1 <br>create table   test(c number , c2 number , primary key (c ,c1) ) ; 用表级约束可以实现联合主键 <br><br>foreign key（外键约束 FK）保证引用的完整性，外键约束，外键的取值是受另外一张表中的主键或唯一键的约束，不能够取其他值，只能够引用主键或唯一键的值，被引用的表，叫做parent table（父表），引用方的表叫做child table（子表），要想创建子表，就要先创建父表，记录的插入也是如此，先父表后子表，删除记录，要先删除子表记录，后删除父表记录，要修改记录，如果要修改父表的记录要保证没有被子表引用。要删表时，要先删子表，后删除父表。(可以通过使用cascade constraints 选项来删除父表) <br>carete   table     parent(c1 number primary key ); <br>create   table    child (c number primary key ,   c2 number references parent(c1)); <br>或表级约束定义: <br>create   table child( c number primary key , c2 number , foreign key(c2) references parent(c1)); <br>非空约束（not null）这是一个列级约束,在建表时,在数据类型的后面加上 not null ，也就是在插入时不允许插入空值。 <br>例：create table student(id number primary key,name varchar2(32) not null,address varchar2(32)); <br>unique 唯一约束 <br>唯一约束，允许为空，要求插入的记录中的值是唯一的。 <br>例：create table student(id number，name varchar2(32),address varchar2(32),primary key (id),unique (address)); <br>check约束 <br>检查约束，可以按照指定条件，检查记录的插入。check中不能使用伪列，不能使用函数，不能引用其他字段。 <br>例：create table sal (a1 number , check(a1&gt;1000)); <br><br>九.数据字典 <br>数据字典是由系统维护的，包含数据库的信息 <br>数据字典示图 <br>user_XXXXX 用户示图 <br>all_XXXXX 所有示图 <br>dba_XXXXX 数据库中所有示图 <br>v$_XXXXX   动态性能示图 <br><br>dict或 dictionary 表示数据字典的数据字典。 <br>user_constraints 用户的表中约束的表 <br>其中有constraints_name字段存放的是约束名，constraint_type字段存放的是约束的类型,r_constraints_name字段表示外键引用自何处. <br>user_cons_column表，是用户的列级约束表,column_name字段存放的是约束字段的名字,position字段存放的是约束在联合键中的位置. <br><br>十.事务transaction <br>原子操作，也就是不可分割的操作，必须一起成功一起失败。 <br>事务的结束动作就是commit，DDL,DCL语句执行会自动提交commit。 <br>sqlplus正常退出是会做提交动作的commit;，当系统异常推出是，会执行回滚操作rollback;。 <br>一个没有结束的事务，叫做活动的事务 (active transaction),活动的事务中修改的数据，只有本会话才能看见。 <br><br>十一.Oracle中的伪列 <br>伪列就像Oracle中的一个表列，但实际上它并未存储在表中。伪列可以从表中查询，但是不能插入、更新或删除它们的值。常用的伪列：rowid和rownum。 <br>rowid：数据库中的每一行都有一个行地址，rowid伪列返回该行地址。可以使用rowid值来定位表中的一行。通常情况下，rowid值可以唯一地标识数据库中的一行。 <br>rowid伪列有以下重要用途： <br>1）能以最快的方式访问表中的一行； <br>2）能显示表的行是如何存储的。 <br>3）可以作为表中行的唯一标识。 <br>如：SQL&gt; select rowid,ename from emp; <br>rownum：对于一个查询返回的每一行，rownum伪列返回一个数值代表的次序。 <br>rownum伪列特点： <br>1） 有个特点要么等于1 要么小于某个值， 不能直接等于某个值, 不能大于某个值。 <br>2）常用于分页显示。 <br>返回的第一行的rownum值为1，第二行的rownum值为2，依此类推。通过使用rownum伪列，用户可以限制查询返回的行数。 <br>如：SQL&gt;select * from emp where rownum&lt;11; 从emp表中提取10条记录。 <br><br>十二.序列(sequence) <br>create sequence 序列名; <br>(不带参数时默认为从1 开始每次递增 1，oracle中为了提高产生序列的效率一般一次性产生20个序列放入当前会话的序列池中备用以加快效率) <br><br>sequence 的参数： <br>increment by n   起始值 <br>start with n     递增量 <br>maxvalue n       最大值 <br>minvalue n       最小值 <br>cycle|no cycle     循环 <br>cache n          缓存(第一次取时会一次取多少个id存起来) <br><br>查看sequence 示图： <br>desc    user_sequences ; <br>select   sequence_name , cache_size , last_number from user_sequences   where   sequence_name like 's_'; <br>select 序列名.currval from   dual    查看当前的序列数 <br>select 序列名.nextval from   dual    查看下一个序列数，它会自动给当前的序列加１ <br>删除序列sequence <br>drop sequence 序列名; <br><br>十三. 视图(View) <br>视图就相当于一条select 语句,定义了一个视图就是定义了一个sql语句, 视图不占空间,使用视图不会提高性能，但是能简化sql语句 <br>创建视图： <br>creating views视图名; <br>如： <br>create or replace views test as select * from test1 where c1=1; <br>create or replace:如果view存在就覆盖，不存在才创建。 <br>force|no force:基表存在时使用，不存在时则创建该表。 <br>注意:向视图中插入数据时，会直接插进基表中，查看视图中的数据时，相当于就是执行创建时的select语句。 <br>删除视图: <br>drop views视图名; <br>试图的约束: <br>with read only视图只读约束 <br>with check option 不允许插入与where条件不符的记录，类似于check约束的功能. <br>create view test_cc <br>as select * from test <br>where c1&gt;10 <br>with check option; <br><br>十四.索引（index） <br>建立索引的目的就是为了加快查询速度,建立索引后会使DML操作效率慢，但是对用户查询会提高效率。删除一个表时，相对应的索引也会删除。另外,索引是会进行排序。 <br>创建一个索引： <br>create index 索引名 on 表名 (字段名); <br>create index test_index on test(c1); <br>删除索引: <br>drop index test_index; <br>注意：创建索引就是为了减少物理读，索引会减少扫描的时间。在经常要用到where的子句的字段，应该使用索引，另外还要看所查询的数据与全部数据的百分比，表越大，查询的记录越少，索引的效率就越高. <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/1259244733#comment</comments>
<qz:effect>134218248</qz:effect>
<pubDate>Thu, 26 Nov 2009 14:12:13 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/1259244733</guid>
</item>

<item>
<title><![CDATA[人生若只如初见,何事秋风悲画扇,等闲变却故人心,却道故人心易变.]]></title>
<link>http://269813046.qzone.qq.com/blog/1258442265</link>
<description><![CDATA[<span style="filter: glow(color=#33CCFF,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">人生若只如初见,所有往事都化为红尘一笑.只留下初见时的惊艳、倾情。忘却也许有过的背叛、伤怀、无奈和悲痛。这是何等美妙的人生境界。 <br>时光匆匆，我们已经回不到过去,也许曾经一见倾心,但是再见之时,也许会是伤心之时。若是如此,不如初见时的那份感觉…… <br>“初见惊艳，再见依然”，在我看来，这只是一种美好的愿望。初见，惊艳。蓦然回首，曾经沧海。只怕早已换了人间。 <br>“人生若只如初见，何事秋风悲画扇？等闲变却故人心，却道故人心易变。骊山语罢清宵半，夜雨霖铃终不怨。何如薄幸锦衣儿，比翼连枝当日愿。”纳兰长于情深于情，他的词清新婉约，可以直抒胸臆，给人很深的人生感悟。 <br>是的，人生若只如初见那该多好，每一个人当最初和你相遇，那种美好的感觉一直就象春天初放的花，那种温馨、那种自然、那种真诚、那种回忆，因此就一直弥漫在了你的生命中。为什么在人的交往中会有误会、费解、猜测和非议呢？只有淡淡的如水的情怀不就足够了吗？就象从未谋面的网友，每次在网上遇到时候互相打个招呼，心中存有彼此的牵挂，不也是一件很美的事情吗？ <br>我想君子之交淡如水也就是这个道理吧？ <br>再读席幕容的《初相遇》，她说：美丽的梦和美丽的诗一样，都是可遇而不可求的，常常在最没能料到的时刻里出现。 <br>我喜欢那样的梦，在梦里，一切都可以重新开始，一切都可以慢慢解释，心里甚至还能感觉到，所有被浪费的时光竟然都能重回时的狂喜与感激。胸怀中满溢着幸福，只因你就在我眼前，对我微笑，一如当年。 <br>我真喜欢那样的梦，明明知道你已为我跋涉千里，却又觉得芳草鲜美，落英缤纷，好像你我才初初相遇。 <br>由此看来，每个人都有着一种初遇情结，真的就象一杯清水一样清纯透明。而诗人给它以诗意的注释，让人感觉到初相遇的美丽、温馨和浪漫。生活中常常有这样的情景，初见后的分手，有如曾经挥手的云彩，也似轻轻告别的康桥…… <br>最美的在心不在远处。曾经，初相遇是怎样的一种情怀？人生若只如初见，岂不是人生最好的写照吗？ <br>也许生活就是这样的，有人说的对，得到了往往就不会去珍惜。得不到才是一种境界。或者只如初见，那种淡淡的情怀倒是让人释怀、让人坦然、让人心安。一句心灵的问候，足以让你一生难忘，我想人生这个东西，淡然一点往往会是清风明月，太过执着，则就是迷惘了，因此我情愿对于友情、恩怨、功过、得失、钱财……都看的再淡一点，情愿那初见的情节永远留在自己的梦里。 <br>林清玄的《法圆师妹》，他说：“每个人的命运其实和荔枝花一样，有些人天生就没有花瓣的，只是默默的开花，默默的结果，在季节的推移中，一株荔枝没有选择的结出它的果实，而一个人也没有能力选择自己的道路吧！” <br>“有的心情你不会明白的，有时候过了五分钟，心情就完全不同了，生命的很多事，你错过一小时，很可能就错过一生了。那时候我只是做了，并不确知些道理，经过这些年，我才明白了，就象今天一样，你住在这个旅馆，正好是我服务的地方，如果你不叫咖啡，或者领班不叫我送，或者我转身时你没有叫我，我们都不能重逢，人生就是这样”。 <br>人生真的就是这个样子吗？我不得而知。 <br>人生若只如初见，优伤的美丽只能定格在回忆中。也许哪天转身而去,留下一个美丽的远去背影。完美的弧线，会诉说着对昨日的依恋。也许，在我们认识的人中，有过误会，有过得失，你就会想起初见时的美丽。或者,那天在某个特定的地方,故地重游,突然发现多年未见的你,一下子就回到了初见的情景,初相遇,那是怎样一种让人难以忘怀的感情呢?! <br>初见惊艳，再见依然。但愿再次见到你的时候,你依然那么美丽如初。 <br>今夜春风微送，把我的心扉吹动，多少尘封的往事都清晰地留在我心中，流淌在我的梦里。 <br>人生如此，浮生如斯，情生情死，乃情之至。不是吗？ <br>我记得了这样一句话：有情不必终老，暗香浮动恰好，无情未必就是决绝，我只要你记着：初见时彼此的微笑…… </span><wbr /><br><br><span style="filter: glow(color=#FF3333,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"> </span><wbr /><br><span style="filter: glow(color=#FF3333,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">抄至百度大叔</span><wbr /><br> <br> <!--v:3.2--> ]]></description>
<category><![CDATA[情感天地]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/1258442265#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Tue, 17 Nov 2009 07:17:45 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/1258442265</guid>
</item>

<item>
<title><![CDATA[领略韩剧韩影中的感人妙语]]></title>
<link>http://269813046.qzone.qq.com/blog/70</link>
<description><![CDATA[<span style="filter: glow(color=#CCFF33,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">有的人天生是花，有的人天生是根。花固然美丽，但失去了根，又能灿烂多久？  <br>——韩影《火山高校》  <br><br>如果你有才华，哪怕是一点点，也不要浪费，这是义务。  <br>——韩剧《广告小子》 <br><br>真正的姻缘，是天上掉下一根针，正好插在一粒米上，这才是爱人相见的姻缘。  <br>——韩剧《1%的恋爱机会》 <br><br>即使生活欺骗了你，不要悲伤和生气，当悲伤的日子过去了，幸福的生活就会迎面而来，我们相信爱是这个寂寞世界唯一的希望。  <br><br>——韩剧《尚道、上学去》 <br><br>我恋爱了，我该怎么办？很痛，但我很想继续痛下去。  <br>——韩影《恋爱小说》 <br><br>雨下多了，土壤也会变质。  <br>——韩剧《白雪公主》 <br><br>一个女人就算独自在房间里哭，也要用衣领挡着。这是一种不为外人所知的坚强，却是在用眼泪和疼痛勉强支撑。  <br>——韩剧《黄手帕》 <br><br>只要相信，就会有奇迹，哪怕记忆消失了，但爱情一定会留下。  <br>——韩剧《请与我跳最后一支舞》 <br><br>写着一行字，心就在跳，按了一个电话，心都要跳出来的感觉，等着跟一个人的约定，就觉得自己得到了世界那样的感觉。  <br>——韩剧《玻璃花》  <br><br><br>世上最不幸的人就是没有回忆的人。  <br>——韩剧《对不起，我爱你》 <br><br>大部分行星，都有返回原来位置的公转周期。人也有一定的周期2500万年，从现在起过2500万年，会重新经历我们现在经历的事情，重新遇见以前见过的人。  <br>——韩剧《宫》 <br><br>当爱人之间发生问题时，自己不要先喊救命，要记得先救她（他）！  <br>——韩影《悲伤电影》  <br><br><br>爱情就像照相机的闪光灯一样，在瞬间“砰”炸开的，不管你心里有没有准备，一瞬间眼前都是发黑的。  <br>——韩剧《布拉格恋人》  <br><br><br>希望和信任是晰蜴的尾巴，被切断了还是会长出来。  <br><br>来淋雨吧，这样就不会被看到眼泪了。 <br><br>——韩剧《情敌》 <br><br>我爱上她的时候没有任何理由，当我爱上她以后，她的一切成为我爱她的理由。  <br>——韩剧《巴黎的恋人》 <br><br>男女之间的关系，是按照两人之间有多少共同的秘密，以及那些秘密会保存到何时，根据这个来决定有效期限。  <br>——韩剧《美妙人生》  <br><br><br>生活其实很简单，有一个甜密的回忆就巳足够。  <br>——韩影《地铁》<br></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[影音数码]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/70#comment</comments>
<qz:effect>512</qz:effect>
<pubDate>Sun, 26 Aug 2007 06:14:13 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/70</guid>
</item>

<item>
<title><![CDATA[玫瑰茄(Miss帝丹)-BG·GL-略有EG段= =（荼毒大众到处发）]]></title>
<link>http://269813046.qzone.qq.com/blog/69</link>
<description><![CDATA[<span style="font-weight:bold"><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">洛神葵·玫瑰茄</span><wbr /></span><wbr /></span><wbr /><br><br> <br>原发于哀界这里：<br><span style="font-family:'Tahoma';line-height:1.8em;"><a href="http://www.haibaraai.cn/bbs/viewthread.php?tid=24875&amp;extra=page%3D1" target="_blank"><span style="color:#000000;line-height:1.8em;">http://www.haibaraai.cn/bbs/viewthread.php?tid=24875&amp;extra=page%3D</span><wbr /></span><wbr /><span style="font-family:'Tahoma';line-height:1.8em;"><span style="color:#000000;line-height:1.8em;">1</span><wbr /></a><wbr /></span><wbr /><br><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">【百合不适者请直接54第三章及EG部分（2楼）= =】</span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"></span><wbr /><br><span style="color:dimgray;line-height:1.8em;"><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">传闻帝丹建校</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">以来曾多次有过Miss帝丹提案，但也都只做到“提案”而已。因各方面原因而多次胎死腹中。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:dimgray;line-height:1.8em;">所以这是第一次帝丹小姐的赛事。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:dimgray;line-height:1.8em;">自然引起了各界的广泛关注。各个电视台也都抓住一直出人才的帝丹也会盛产美人这条大新闻，采取追踪报道的最高姿态。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:dimgray;line-height:1.8em;">而报名会就更是热闹非凡……花花绿绿的衣服，咳咳……是形形色色的人们塞满了整个现场。上至秃顶的欧几桑们一脸猥琐的望着女孩子们短裙下修长的美腿，欧巴桑们有的拖着害羞的女儿前来报名有的揪起色迷迷盯着美女的欧几桑一顿猛打，有些帅气的男孩子扶着女友的肩膀一脸温柔的鼓励着一双深情的眼睛分明写着你不参赛我也会这么爱你但你参赛获奖我就更爱你了的表情，下至小学、幼儿园甚至刚学会爬的孩子被抱在怀里眨着星星眼仰视着漂亮的大姐姐们……</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:black;line-height:1.8em;">·夏晨&lt;&lt;&lt;</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="color:black;line-height:1.8em;"><span style="font-weight:bold"><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">__</span><wbr /></span><wbr /></span><wbr /><span style="font-weight:bold"><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">青梅竹马才相知</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">夏日。酷暑。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">这样出门咬自己等同吃烤乳猪的日子里，非要说有什么好事的话。那一定是——</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“呀呀！小五郎快看！那边有群穿迷你裙的美女！”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“哟呼～旁边还有位短裙被吹起来的小姐！”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">等小五郎满心欢喜的转眼望过去，只看到妃英理临近爆发的脸部特写。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">遭到一记巴掌和一句“色狼”的评价后，毛利小五郎撇撇嘴满不在乎的对同伴道：“不会享受夏日的女人最可悲。”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">意料之中，迎来了响亮的第二掌。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">看到隔三差五上演的夫妻场景，小五郎的同伴们都知趣的隐去。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“妃英理你这女人太不给我面子！”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“对于色狼，我一向毫不留情。”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">捂着左右对称又红又肿和乳猪头毫无区别的面颊的小五郎龇牙咧嘴的对妃英理骂个不停。什么你这样的女人要是能嫁出去我毛利小五郎就终身不娶要是谁肯娶你一定不是色盲就是有被虐倾向之类云云不休。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">而某位号称品学兼优的帝丹皇后对其充耳不闻。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">正所谓适当的时候无视适当的人才是智者。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">待毛利小五郎吼道口干舌燥又无心无力之时，妃英理适时插了句：</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“再不走就赶不上校园庆了哟。”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“呀！美女们～我来了……”小五郎顿时有了精神，大跨步向前冲去……</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">留下一脸无奈的青梅竹马，“这家伙只爱美人么？”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“我爱你的微笑——你的容貌——你的细语温存——爱你的心思灵慧</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">正与我的心意相契相投，在那样的日子里曾带给我怡人的松弛——”<span style="font-size:10px;line-height:1.8em;">①</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“……这位同学，你当着大家的面表白，人家会很为难的呀。”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">纤指绕着一缕垂于耳际的茶色发丝，藤峰有希子抿嘴一笑，顿时身后几十双眼睛变成夸张的心状……</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“真不愧是传说中的帝丹公主哟，魅——力——非——凡——”扶正眼镜，妃英理一手抓住身后某位快要流出口水的青梅竹马。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“啊啦～英理。失礼了……难道帝丹皇后也来报名么？这么强劲的对手真使人为难。”</span><wbr /></span><wbr /></span><wbr /><br><span style="color:seagree;line-height:1.8em;"><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">“有希子小姐</span><wbr /></span><wbr /><span style="font-family:'Gulim';line-height:1.8em;"><span style="line-height:1.8em;">?</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">，请加油！我毛利小五郎永远支Ch——”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">小五郎话未说完已经被面色从容的帝丹皇后掀飞出场。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“嘛。英理真是……两人还是这么甜蜜，让人嫉妒呢。”</span><wbr /></span><wbr /></span><wbr /><br><span style="color:seagree;line-height:1.8em;"><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">得到预期的皮笑肉不笑回应，有希子适时转移了话题，“英理会报名真是奇闻，那么我们就是敌手了。英理要手下留情哟——</span><wbr /></span><wbr /><span style="font-family:'Gulim';line-height:1.8em;"><span style="line-height:1.8em;">?</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">没人知道一向以学业为重甚至没加入任何社团的妃英理为什么会如此积极的参加帝丹小姐的竞选，而某位连Miss帝丹为何物都不知道的青梅竹马自然也不会知道只是因为自己说了句以后一定要娶个美人为妻的戏言而使得帝丹皇后想要通过竞选成为公认的美人。<span style="font-size:10px;line-height:1.8em;">②</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">想成为你喜欢的人。</span><wbr /></span><wbr /></span><wbr /><br><br><span style="font-weight:bold"><wbr /><span style="line-height:1.8em;"><span style="font-family:'宋体';line-height:1.8em;"><span style="font-size:16px;line-height:1.8em;">·夏夕&lt;&lt;&lt;</span><wbr /></span><wbr /></span><wbr /><br><span style="line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">__</span><wbr /><span style="line-height:1.8em;">一见钟情才浪漫</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“有希子小姐，请和我交往！”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">刚出教室就撞上扑面而来的情书和红着脸冲向远处的背影，有希子顽皮地眨眨眼对身旁的女伴做出你们先走的手势。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“呐呐，今天又有几封。”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“不愧是我女儿，在哪里都受欢迎呀！&gt; &lt;”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“嘛～妈妈真是的。哪有这么夸自己女儿的。说起来，你和爸爸到底准备几时回来……”</span><wbr /></span><wbr /></span><wbr /><br><span style="color:seagree;line-height:1.8em;"><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">“其实……我和你爸爸准备接着去非洲度假顺道观赏大象</span><wbr /></span><wbr /><span style="font-family:'Gulim';line-height:1.8em;"><span style="line-height:1.8em;">?</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“哎——！？真过分，把这么如花似玉的女儿一个人丢家里也不怕危险！”</span><wbr /></span><wbr /></span><wbr /><br><span style="color:seagree;line-height:1.8em;"><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">“啊啦有希子现在正是发展罗曼史的年纪呢</span><wbr /></span><wbr /><span style="font-family:'Gulim';line-height:1.8em;"><span style="line-height:1.8em;">?</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">！我们两个在身边多不方便，况且亲眼看到心爱的女儿恋爱，你那个恋女狂老爸估计会心碎得无以复加。所以我们多方面考虑后才这样决定的嘛！啊呀……要上飞机了，期待我的好。女。婿。哟～”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">还没来得及做出回应的有希子只能悻悻的对着电话里的忙音感叹世间无常，并在0.01的秒的瞬间决定如果真有罗曼史将来一定要生个孩子出来等。同。对。待！<span style="font-size:10px;line-height:1.8em;">③</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“仁慈的主如果你看到如此可爱的少女的请求请你让雨停下吧……”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“只剩20分钟了……”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">焦急的有些不顾仪态的有希子径直冲入雨中，“如果因为这种小事迟到不能入围颜面何存”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">然。那些卡车货车面包车是不会分辨美女的……所以毫不留情的将水坑里的泥浆装点在帝丹公主精心准备的连衣裙上。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">望着一路来的壮观成果，令一向以爽朗著称有希子皱了皱眉“哎，上帝赐予我一身斑驳……”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“上帝……哎！？天使……之手？”有希子失神的望着突然伸向自己的一只修长白皙的手，</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“不要紧吧？”让人安心的语气，</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“需要我送你回家么？”慢慢抬起头，棱角分明的帅气脸庞，和煦的绅士微笑，王子般的半弯腰姿态，向自己伸出手来……有那么一瞬，有希子差点就想把自己送出去了。随即看着自己拙劣的半蹲姿态外加邋遢的装扮，即刻想到灰姑娘的剧本……瞬间就以光速冲进学校，甚至没有多看身后保持伸手弯腰姿态完全不清楚发生了什么的某人一眼。<span style="font-size:10px;line-height:1.8em;">④</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“抱歉，来迟了。”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“刚好到你哟。啊啊啊！？有希子你穿校服去演奏么？”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">“请安心，我可是调查过哟～”故作神秘的勾过好友的肩，“评委中没有恋装癖和学生控！”</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">无视身后石化倒地的好友，有希子抚平匆忙间换上的校服上几处皱褶，深呼吸，淡定上台，</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">帝丹公主华丽闪亮登场！</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">台上是早已备好的钢琴，台下是亲卫队高高树起的标语。<span style="font-size:10px;line-height:1.8em;">⑤</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">柔美的琴音，连窗外蝉鸣都应和起来。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">随着指尖的跳跃，音符如精灵般越过她的柔荑飞绕整个礼堂，洋洋盈耳。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">反映过来时是全场空前的掌声不息，似乎是演凑出了如初恋般甜美的音乐呢。</span><wbr /></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">理查德·克莱德曼——</span><wbr /></span><wbr /></span><wbr /><br><span style="color:seagree;line-height:1.8em;"><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">&lt;&lt;</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;">爱的旋律&gt;&gt;</span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:10px;line-height:1.8em;">⑥</span><wbr /></span><wbr /></span><wbr /><span style="font-family:'SimSun';line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"></span><wbr /></span><wbr /><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">即使三年后已经成为世界知名影后的藤峰有希子仍记得Miss帝丹第一场赛事那个泛着晨夕的雨天，似乎是有某个记不清长相的人向自己伸出骨节分明的手，及注视着自己的时候会微微上翘的温柔唇角。</span><wbr /></span><wbr /></span><wbr /><br><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">于是在盛宴见到世界知名推理小说家的工藤优作的时候，捂住嘴却依然很惊动全场的笑出声来……</span><wbr /></span><wbr /></span><wbr /><br><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">原来17岁的盛夏真的有罗曼史，只是</span><wbr /></span><wbr /></span><wbr /><br><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">一见钟情晚来了三年。</span><wbr /></span><wbr /></span><wbr /><br><br><span style="font-family:'SimSun';line-height:1.8em;"><span style="line-height:1.8em;"><span style="color:seagree;line-height:1.8em;">我对你，一见钟情。<span style="font-size:10px;line-height:1.8em;">⑦</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br>  <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/69#comment</comments>
<qz:effect>512</qz:effect>
<pubDate>Sun, 12 Aug 2007 12:53:52 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/69</guid>
</item>

<item>
<title><![CDATA[蛋黄酥、莲蓉酥、鲜肉酥——酥酥入心!]]></title>
<link>http://269813046.qzone.qq.com/blog/68</link>
<description><![CDATA[<wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_eb3e57a9ea12e8b.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_eb3e57a9ea12e8b.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_56eac7cff574efe.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_56eac7cff574efe.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_e4b47747dee84d9.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_e4b47747dee84d9.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_195e9c4a9f9a515.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_195e9c4a9f9a515.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_1fe5bc42b32559d.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_1fe5bc42b32559d.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_16b5f42edbd19fb.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_16b5f42edbd19fb.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_4f6f2bbd1eed2c2.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_4f6f2bbd1eed2c2.jpg" /></a><wbr /><br>　　<br><wbr /><a href="http://www.nihao8.com/attachment/Mon_0704/38_21681_602d9d093e0d3b9.jpg" target="_blank"><img style="border:0;" src="http://www.nihao8.com/attachment/Mon_0704/38_21681_602d9d093e0d3b9.jpg" /></a><wbr /><br><br>　　<span style="line-height:1.8em;"><span style="font-weight:bold"><wbr /><span style="font-family:'Tahoma';line-height:1.8em;">一、油皮的做法： </span><wbr /><br><span style="line-height:1.8em;">　　材料（16个）： </span><wbr /><br><span style="line-height:1.8em;">　　面粉100g、色拉油40g、温水30g。 </span><wbr /><br><span style="line-height:1.8em;">　　把色拉油倒入面粉中搓匀，然后慢慢加温水，揉成一个面团。可以多揉一会， </span><wbr /><br><span style="line-height:1.8em;">　　这样面团会比较有弹性～ </span><wbr /><br><span style="line-height:1.8em;">　　二、油酥的做法： </span><wbr /><br><span style="line-height:1.8em;">　　材料：面粉68g、猪油34g </span><wbr /><br><span style="line-height:1.8em;">　　同样拌匀。 </span><wbr /><br><span style="line-height:1.8em;">　　两种面团都盖上湿布，放20分钟左右～，然后都搓成长条，切成16个小剂子 </span><wbr /><br><span style="line-height:1.8em;">　　把油皮的剂子擀成薄片，中间放上一个油酥，包起来，翻个面，擀成长条状 </span><wbr /><br><span style="line-height:1.8em;">　　卷起来之后，再擀一次，可以重复2－3次以上动作。然后把长条状的面皮卷起来， 压扁。 </span><wbr /><br><span style="line-height:1.8em;">　　再擀成片状，包上馅，包的时候要把口收好，然后翻过来，放在一边即可。 </span><wbr /><br><span style="line-height:1.8em;">　　都包好后，打一个蛋，用小刷子在上面刷上蛋黄，烤盘里垫一张油纸，把酥饼放进去， </span><wbr /><br><span style="line-height:1.8em;">　　收口的一面朝下！210度，烤20分钟左右就可以。</span><wbr /></span><wbr /></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/68#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Sun, 12 Aug 2007 12:50:30 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/68</guid>
</item>

<item>
<title><![CDATA[日系NTT DoCoMo手机]]></title>
<link>http://269813046.qzone.qq.com/blog/67</link>
<description><![CDATA[<span style="font-weight:bold"><wbr /><span style="font-family:'Tahoma';line-height:1.8em;">目前日本市场上手机的主力品牌。。。看日剧饿亲就会知道很多日剧里面说饿赞助商之一就是这个牌子</span><wbr /></span><wbr /><br><wbr /><a href="http://www.ubergizmo.com/photos/2006/5/ntt-docomo-logo.jpg" target="_blank"><img style="border:0;" src="http://www.ubergizmo.com/photos/2006/5/ntt-docomo-logo.jpg" /></a><wbr /><br><wbr /><a href="http://www.ciw.com.cn/pic/UploadFiles_2594/200705/20070516165840990.jpg" target="_blank"><img style="border:0;" src="http://www.ciw.com.cn/pic/UploadFiles_2594/200705/20070516165840990.jpg" /></a><wbr /><br><wbr /><a href="http://img1.pconline.com.cn/pconline/0704/25/1006762_070426_cool_p904i_01.jpg" target="_blank"><img style="border:0;" src="http://img1.pconline.com.cn/pconline/0704/25/1006762_070426_cool_p904i_01.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_01.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_01.jpg" /></a><wbr /><br><wbr /><a href="http://tech.tom.com/dimg/2007/0426/img-1694585699.jpg" target="_blank"><img style="border:0;" src="http://tech.tom.com/dimg/2007/0426/img-1694585699.jpg" /></a><wbr /><br><wbr /><a href="http://it.tom.com/dimg/2007/0426/img-1694585653.jpg" target="_blank"><img style="border:0;" src="http://it.tom.com/dimg/2007/0426/img-1694585653.jpg" /></a><wbr /><br><wbr /><a href="http://it.tom.com/dimg/2007/0426/img-1694585689.jpg" target="_blank"><img style="border:0;" src="http://it.tom.com/dimg/2007/0426/img-1694585689.jpg" /></a><wbr /><br><wbr /><a href="http://tech.tom.com/dimg/2007/0426/img-1694585696.jpg" target="_blank"><img style="border:0;" src="http://tech.tom.com/dimg/2007/0426/img-1694585696.jpg" /></a><wbr /><br><wbr /><a href="http://it.tom.com/dimg/2007/0426/img-1694585702.jpg" target="_blank"><img style="border:0;" src="http://it.tom.com/dimg/2007/0426/img-1694585702.jpg" /></a><wbr /><br><wbr /><a href="http://it.tom.com/dimg/2007/0426/img-1694585654.jpg" target="_blank"><img style="border:0;" src="http://it.tom.com/dimg/2007/0426/img-1694585654.jpg" /></a><wbr /><br><wbr /><a href="http://it.tom.com/dimg/2007/0426/img-1694585700.jpg" target="_blank"><img style="border:0;" src="http://it.tom.com/dimg/2007/0426/img-1694585700.jpg" /></a><wbr /><br><wbr /><a href="http://cimg2.163.com/catchpic/B/B7/B7E147DDF0ED99E604E5844DCF70C6DA.jpg" target="_blank"><img style="border:0;" src="http://cimg2.163.com/catchpic/B/B7/B7E147DDF0ED99E604E5844DCF70C6DA.jpg" /></a><wbr /><br><wbr /><a href="http://www.estar.com.cn/news/UploadFiles/2007-1/200712674745734.jpg" target="_blank"><img style="border:0;" src="http://www.estar.com.cn/news/UploadFiles/2007-1/200712674745734.jpg" /></a><wbr /><br><wbr /><a href="http://images1.danawa.com.cn/image_news/P63014/CAA/CEL/2007-01-24/309622_120070123_n703iu_02.jpg" target="_blank"><img style="border:0;" src="http://images1.danawa.com.cn/image_news/P63014/CAA/CEL/2007-01-24/309622_120070123_n703iu_02.jpg" /></a><wbr /><br><wbr /><a href="http://www.hard168.com/Files/cjpic/2007-1/24/0712410414296142.jpg" target="_blank"><img style="border:0;" src="http://www.hard168.com/Files/cjpic/2007-1/24/0712410414296142.jpg" /></a><wbr /><br><wbr /><a href="http://img04.21cn.com/2007/01/24/1092444563.jpg" target="_blank"><img style="border:0;" src="http://img04.21cn.com/2007/01/24/1092444563.jpg" /></a><wbr /><br><wbr /><a href="http://www.hard168.com/Files/cjpic/2007-1/24/0712410414293569.jpg" target="_blank"><img style="border:0;" src="http://www.hard168.com/Files/cjpic/2007-1/24/0712410414293569.jpg" /></a><wbr /><br><wbr /><a href="http://image.mobile3g.cn/799/799313&amp;radE9EA2/799313.jpg" target="_blank"><img style="border:0;" src="http://image.mobile3g.cn/799/799313&amp;radE9EA2/799313.jpg" /></a><wbr /><br><wbr /><a href="http://image2.sina.com.cn/IT/mobile/n/2007-01-18/d7a8fffdc58bf67415b3ecf6dc58e1b5.jpg" target="_blank"><img style="border:0;" src="http://image2.sina.com.cn/IT/mobile/n/2007-01-18/d7a8fffdc58bf67415b3ecf6dc58e1b5.jpg" /></a><wbr /><br><wbr /><a href="http://70.84.99.115/wp-content/uploads/2007/05/ntt-docomo-foma-n904i-by-stefano-givannoni.png" target="_blank"><img style="border:0;" src="http://70.84.99.115/wp-content/uploads/2007/05/ntt-docomo-foma-n904i-by-stefano-givannoni.png" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/074/19/20070419_ntt_05.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/074/19/20070419_ntt_05.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/074/19/20070419_ntt_04.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/074/19/20070419_ntt_04.jpg" /></a><wbr /><br><wbr /><a href="http://static.zooomr.com/images/666042_15ff1c7712.jpg" target="_blank"><img style="border:0;" src="http://static.zooomr.com/images/666042_15ff1c7712.jpg" /></a><wbr /><br><wbr /><a href="http://static.zooomr.com/images/666043_bea8d3fb6b.jpg" target="_blank"><img style="border:0;" src="http://static.zooomr.com/images/666043_bea8d3fb6b.jpg" /></a><wbr /><br><wbr /><a href="http://photo.sohu.com/20041119/Img223068997.bmp" target="_blank"><img style="border:0;" src="http://photo.sohu.com/20041119/Img223068997.bmp" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/073/7/20070307_f883i_02.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/073/7/20070307_f883i_02.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/073/7/20070307_f883i_01.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/073/7/20070307_f883i_01.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_02.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_02.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_05.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_05.jpg" /></a><wbr /><br><wbr /><a href="http://tech.tom.com/dimg/2007/0426/img-1694585698.jpg" target="_blank"><img style="border:0;" src="http://tech.tom.com/dimg/2007/0426/img-1694585698.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_03.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/074/24/20070424_ntt_03.jpg" /></a><wbr /><br><wbr /><a href="http://www.myleading.com/show/pic-mobile/mobile-220a.jpg" target="_blank"><img style="border:0;" src="http://www.myleading.com/show/pic-mobile/mobile-220a.jpg" /></a><wbr /><br><wbr /><a href="http://www.myleading.com/show/pic-mobile/mobile-220c.jpg" target="_blank"><img style="border:0;" src="http://www.myleading.com/show/pic-mobile/mobile-220c.jpg" /></a><wbr /><br><wbr /><a href="http://www.myleading.com/show/pic-mobile/mobile-220e.jpg" target="_blank"><img style="border:0;" src="http://www.myleading.com/show/pic-mobile/mobile-220e.jpg" /></a><wbr /><br><wbr /><a href="http://59.42.241.10/it/mobile/xinpin/200702260452_1455925.jpg" target="_blank"><img style="border:0;" src="http://59.42.241.10/it/mobile/xinpin/200702260452_1455925.jpg" /></a><wbr /><br><wbr /><a href="http://www.it.com.cn/f/mobile/072/26/20070226_d903itv_01.jpg" target="_blank"><img style="border:0;" src="http://www.it.com.cn/f/mobile/072/26/20070226_d903itv_01.jpg" /></a><wbr /><br><wbr /><a href="http://www.myleading.com/show/pic-mobile/mobile-070.jpg" target="_blank"><img style="border:0;" src="http://www.myleading.com/show/pic-mobile/mobile-070.jpg" /></a><wbr /><br><wbr /><a href="http://www.myleading.com/show/pic-mobile/mobile-220f.jpg" target="_blank"><img style="border:0;" src="http://www.myleading.com/show/pic-mobile/mobile-220f.jpg" /></a><wbr /><br><wbr /><a href="http://cimg.163.com/mobile/050809/images/FOMA%20phones-447-4.jpg" target="_blank"><img style="border:0;" src="http://cimg.163.com/mobile/050809/images/FOMA%20phones-447-4.jpg" /></a><wbr /><br><wbr /><a href="http://61.144.28.70/Images/news/thief/2007-4-19_26ED589320FDCAF62843CAE4723CB0FF.jpg" target="_blank"><img style="border:0;" src="http://61.144.28.70/Images/news/thief/2007-4-19_26ED589320FDCAF62843CAE4723CB0FF.jpg" /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/67#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Sat, 11 Aug 2007 14:16:44 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/67</guid>
</item>

<item>
<title><![CDATA[英文闪字闪图=可作QQ头像+空间签名]]></title>
<link>http://269813046.qzone.qq.com/blog/66</link>
<description><![CDATA[<wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/grlandboi.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/grlandboi.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/everynitei.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/everynitei.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/babypink.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/babypink.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/hahanotforme.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/hahanotforme.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/heybaby.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/heybaby.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/i66861884_46247.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/i66861884_46247.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/i118541901_80053_2.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/i118541901_80053_2.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/i121516120_72220_2.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/i121516120_72220_2.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/liveandlove.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/liveandlove.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/loveu.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/loveu.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/loveu2.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/loveu2.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/luvinuistuff4re.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/luvinuistuff4re.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/1TRY.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/1TRY.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/6.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/6.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/07.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/07.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththithurts.png" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththithurts.png" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththfirstkiss.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththfirstkiss.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththeverythinghappensforareason1.png" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththeverythinghappensforareason1.png" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththeresaboy.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththeresaboy.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththeonlygirl.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththeonlygirl.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我并不希望我是唯一的女生在你心里，我只希望是唯一个女孩你真的在意</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththdiamonds.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththdiamonds.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththcryinginside.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththcryinginside.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我在内心里流眼泪，除了我，没人知道</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththbrightigottawearshades.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththbrightigottawearshades.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我的未来太明亮了，我的戴上墨镜</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththa48c99a1.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththa48c99a1.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thth21683.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thth21683.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">永远不要放弃那些让你微笑的东西</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/B4IMetU.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/B4IMetU.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">当我认识你以前，我还不知道为什么会看一个人就傻笑</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/alhflah.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/alhflah.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thlove.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thlove.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我们的名字在一起很好听</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thholdme.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thholdme.jpg" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">当你抱我的时候，我希望你永远不想让你放手</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thheartache.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thheartache.jpg" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">心痛是永远的</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thththbutterfly.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thththbutterfly.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththththDontUnderstand.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththththDontUnderstand.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">很奇怪，一个人可以让你心碎</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">不过你还是用这个碎的心，爱他</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/ththweakness.jpg" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/ththweakness.jpg" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/nofriends.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/nofriends.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/i103284015_94104.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/i103284015_94104.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373308916.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373308916.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">所有人都需要陪伴</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373311534.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373311534.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我希望我是那个女孩，</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">你指着告诉他们我就是她。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">（意思就是他告诉他的朋友，你就是他喜欢的人）</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373311630.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373311630.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373312236.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373312236.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373316528.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373316528.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373313455.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373313455.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我希望我没有爱过你，</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">那样我就不会在乎你。</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/373313214.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/373313214.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">你给我蝴蝶</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">（就是“你让我紧张”的意思）</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/461567827.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/461567827.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/461567462.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/461567462.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/461570592.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/461570592.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/516557747.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/516557747.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">初恋永远不会消失</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/517355780.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/517355780.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/517355991.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/517355991.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">我一生都在等待着你的出现</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/517356024.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/517356024.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">热恋中</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/518564616.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/518564616.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">女孩遇见了男孩</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thcrazyoveryou.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thcrazyoveryou.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">看清楚，她为了你发疯了</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">（发疯不是那种发疯，其实意思是一直想他，忘不了他）</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/002.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/002.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/thbutterflies.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/thbutterflies.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">你给我蝴蝶</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">（就是“你让我紧张”的意思）</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/yoursmilemakesmesmile.png" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/yoursmilemakesmesmile.png" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">你的微笑，让我开心</span><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/99la11.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/99la11.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/logo_friends.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/logo_friends.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/a.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/a.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/63252272680953125040920.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/63252272680953125040920.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/63252272262781250073456.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/63252272262781250073456.gif" /></a><wbr /><br><br><wbr /><a href="http://i2.photobucket.com/albums/y2/summer_night/271581779.gif" target="_blank"><img style="border:0;" src="http://i2.photobucket.com/albums/y2/summer_night/271581779.gif" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">不要告诉我你爱我，</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">因为你跟不知道我。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">如果你真的想要我,</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">就会给我一些时间。</span><wbr /><br>  <!--v:3.2--> ]]></description>
<category><![CDATA[各类教程]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/66#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Sat, 11 Aug 2007 14:14:28 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/66</guid>
</item>

<item>
<title><![CDATA[[PS教程]Photoshop笔刷巧做青草字特效]]></title>
<link>http://269813046.qzone.qq.com/blog/65</link>
<description><![CDATA[<wbr /><a href="http://design.yesky.com/imagelist/06/43/637we6vm01x1.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/637we6vm01x1.jpg" /></a><wbr /> <br>Photoshop的高版本提供了非常丰富的现成笔刷，今天我们用青草笔刷来绘制毛茸茸的青草字特效。 <br>　　在Photoshop中新建一个白色背景的文档，设置字体为Arial Black，字号36，输入字符“F”。 <br>　　设置前景色为#4E5500，背景色为#E9EBCE。 <br>　　新建立一个图层，选择青草笔刷。 <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/5w39mb4wv7so.gif" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/5w39mb4wv7so.gif" /></a><wbr /> <br>　 <br>用青草画笔创建一些图形。 <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/7e48isui9vst.gif" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/7e48isui9vst.gif" /></a><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/256jvt30pmt1.gif" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/256jvt30pmt1.gif" /></a><wbr /> <br>　　然后旋转90度调整到如下图所示位置： <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/c19fyzxpcr7h.gif" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/c19fyzxpcr7h.gif" /></a><wbr /> <br>　　复制上面的图层，接着调整如下图： <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/l8b0774he37y.gif" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/l8b0774he37y.gif" /></a><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/70b02y0m2921.gif" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/70b02y0m2921.gif" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/n13cj2i68eeq.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/n13cj2i68eeq.jpg" /></a><wbr /> <br>　　再次复制图层继续调整，水平翻转： <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/byco55st65ki.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/byco55st65ki.jpg" /></a><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/50r5ygf7i8r8.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/50r5ygf7i8r8.jpg" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/943vkad422t4.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/943vkad422t4.jpg" /></a><wbr /> <br>　　重复上面操作，方法很简单，在这里不详细说调整方法了，注意删除一些多余的： <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/p0cg3xu6x467.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/p0cg3xu6x467.jpg" /></a><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/bf9qu24i373f.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/bf9qu24i373f.jpg" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/vw5nq6f79653.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/vw5nq6f79653.jpg" /></a><wbr /> <br>　　最终效果： <br><wbr /><a href="http://design.yesky.com/imagelist/06/43/8m58o71906r8.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/06/43/8m58o71906r8.jpg" /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[各类教程]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/65#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Fri, 10 Aug 2007 12:40:14 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/65</guid>
</item>

<item>
<title><![CDATA[PS“非主流”照片文字合成表现手法]]></title>
<link>http://269813046.qzone.qq.com/blog/64</link>
<description><![CDATA[<wbr /><a href="http://design.yesky.com/imagelist/2007/193/o44pfws4i05i.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/o44pfws4i05i.jpg" /></a><wbr /> <br>　　在网上经常会看到一些比较另类的图片，比如下面这几张。 <br>　　很多人把它叫做QQ签名图，或者“非主流”图片什么的。为啥这样叫就不知道了（偶书读得少，还请大家原谅）。很多朋友都问这类图片怎么做，所以今天想给大家具体讲讲这类图片的做法。 <br>　　分析一下，其实这些图片的做法还是很简单的：这类图片没有固定的大小，没有固定的版式，没有固定的色调，没有固定的文字，没有固定的边框，一切都是很随意，可就是从这些简单的随意中表现出了一种独特的风格。并且为很大一部分人所钟爱。 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/1z6yswxoqfq9s.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/1z6yswxoqfq9s.jpg" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/024b605rsbv0.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/024b605rsbv0.jpg" /></a><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/3b3et11nle30.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/3b3et11nle30.jpg" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/7wmg55wcc53n.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/7wmg55wcc53n.jpg" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/49383d91j711.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/49383d91j711.jpg" /></a><wbr /> <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/170orrnrt6j3.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/170orrnrt6j3.jpg" /></a><wbr /> <br>　　言归正传，下面我们总结一下，这些“非主流”图片主要用了哪些表现手法。 <br>　　第一种表现手法——另类的色调</span><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/34i4937qygcj.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/34i4937qygcj.jpg" /></a><wbr /> <br>　　这种色调就不用我说了，大家都知道这是“反转负冲”效果，其具体调节方法就是用Photoshop的曲线(Ctrl+M)。 <br>　　色调的调节经常用到的无非就是下面这个菜单里面的东东，大家试着慢慢来 <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/x223293abg4m.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/x223293abg4m.jpg" /></a><wbr /> <br><br> 第二种表现手法——另类的文字搭配 <br>　　看看那张“我现在狠想杀人”够夸张了吧，文字和图片的搭配也是很讲究技巧的，“我现在狠想杀人”整个图片上表现出来血淋淋的红色，当然让人有相应的联想…… <br>　　你总不能给它配一句“多雨的冬季总算过去，天空微露淡蓝的晴”，最少也得牛头对上马嘴，要不就达不到那种意境了。 <br><br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/i4n3lux63r8ns.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/i4n3lux63r8ns.jpg" /></a><wbr /> <br><br>　　下面这幅照片需要的恬淡意境，自然需要用浪漫的字体表现。 <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/fdofk139211f.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/fdofk139211f.jpg" /></a><wbr /> <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/4qah2v31x9n5.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/4qah2v31x9n5.jpg" /></a><wbr /> <br><br>　第3种表现手法:独特的版式</span><wbr /> <br>　　看看下面这张图片。 <br>　　将一张完整的图片进行分割，然后以无序的方式进行排放，也能给人一种另类的感觉。 <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/35a1as2f9dwu.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/35a1as2f9dwu.jpg" /></a><wbr /> <br>　　 <br>第四种表现手法——特殊的边框效果</span><wbr /> <br>　　这就不用多讲了，特殊边框的制作有很多方法，下面介绍其中几种。 <br>　　 <br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/7iwrcrwc15wp.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/7iwrcrwc15wp.jpg" /></a><wbr /> <br>　　 <br><br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/9f2y9n53y39qs.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/9f2y9n53y39qs.jpg" /></a><wbr /> <br><br>　　 <br><br><wbr /><a href="http://design.yesky.com/imagelist/2007/193/x1tmb62ik311s.jpg" target="_blank"><img style="border:0;" src="http://design.yesky.com/imagelist/2007/193/x1tmb62ik311s.jpg" /></a><wbr /> <br><br>　　另类的色调、另类的文字搭配、独特的版式、特殊的边框效果等，这么多另类的元素堆在一起，够另类了吧？当然也还有其它的表现手法，大家可以多多尝试。  <!--v:3.2--> ]]></description>
<category><![CDATA[各类教程]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/64#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Fri, 10 Aug 2007 12:38:51 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/64</guid>
</item>

<item>
<title><![CDATA[世上还有人用这种手机链]]></title>
<link>http://269813046.qzone.qq.com/blog/63</link>
<description><![CDATA[<wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/0a45efd0f1e7d044253062221102b434.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/0a45efd0f1e7d044253062221102b434.jpg" /></a><wbr /><br><br><br><br><wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/898c2ccd0c064c79b30cf8ec92ed5003.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/898c2ccd0c064c79b30cf8ec92ed5003.jpg" /></a><wbr /><br><br><br><br><wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/e9c6ead7638fe42afbf180878f6d48d2.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/e9c6ead7638fe42afbf180878f6d48d2.jpg" /></a><wbr /><br><br><br><br><wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/19cfc5046c6b867291a03e111fffb1aa.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/19cfc5046c6b867291a03e111fffb1aa.jpg" /></a><wbr /><br><br><br><br><wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/e3773728312a3427c7f47049f9df8c74.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/e3773728312a3427c7f47049f9df8c74.jpg" /></a><wbr /><br><br><br><br><wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/eb24c8ba6770c5a3a06c6fe208a3e0fa.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/eb24c8ba6770c5a3a06c6fe208a3e0fa.jpg" /></a><wbr /><br><br><br><br><wbr /><a href="http://image1.chinabbs.com/pic_search/original/21295/33bc0f89843bf0d44820e1ab6b127337.jpg" target="_blank"><img style="border:0;" src="http://image1.chinabbs.com/pic_search/original/21295/33bc0f89843bf0d44820e1ab6b127337.jpg" /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[269813046@qq.com(□绯樱 )]]></author>
<comments>http://269813046.qzone.qq.com/blog/63#comment</comments>
<qz:effect>513</qz:effect>
<pubDate>Thu, 09 Aug 2007 13:41:48 GMT</pubDate>
<guid>http://269813046.qzone.qq.com/blog/63</guid>
</item>

</channel>
</rss>

