<?xml version="1.0" encoding="UTF-8"?>
  <feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html"><![CDATA[青豆的天空]]></title>
  <subtitle type="html"><![CDATA[豆子的生活...... 辛 酸 苦 辣 甜......]]></subtitle>
  <id>http://www.qingdou.com/blog/</id> 
  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/" /> 
  <link rel="self" type="application/atom+xml" href="http://www.qingdou.com/blog/atom.asp" /> 
  <generator uri="http://www.pjhome.net/" version="2.4.1022">PJBlog2</generator> 
  <updated>2009-11-11T11:55:03+08:00</updated> 

  <entry>
	  <title type="html"><![CDATA[百年不遇的大雪]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=6" label="相册┊Photo" /> 
	  <updated>2009-11-11T11:55:03+08:00</updated>
	  <published>2009-11-11T11:55:03+08:00</published>
		  <summary type="html"><![CDATA[百年不遇的大雪<br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/d20091111114734.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/u20091111114742.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/s20091111114749.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/220091111115238.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/r20091111115253.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/v2009111111532.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/n2009111111539.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/f20091111115317.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/y20091111115324.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/120091111115344.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/e20091111115351.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/v20091111115359.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/t2009111111546.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0911/620091111115412.jpg" border="0" alt=""/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=231" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=231</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[CSS 如何去掉li前的点 使得LI前面的点不在显示]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=19" label="DIV┊div+css" /> 
	  <updated>2009-09-08T11:18:54+08:00</updated>
	  <published>2009-09-08T11:18:54+08:00</published>
		  <summary type="html"><![CDATA[方法一：<br/>&lt;ul&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;style=&#34;list-style-type:none;&#34;&gt;百度&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;style=&#34;list-style-type:none;&#34;&gt;雅虎&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;style=&#34;list-style-type:none;&#34;&gt;新浪&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;style=&#34;list-style-type:none;&#34;&gt;谷歌&lt;/li&gt;<br/>&lt;/ul&gt;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;方法二：<br/>&lt;style&gt;<br/>li&nbsp;{list-style-type:none;}<br/>&lt;/style&gt;<br/>&lt;ul&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;百度&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;雅虎&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;新浪&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;谷歌&lt;/li&gt;<br/>&lt;/ul&gt;<br/><br/>方法三：<br/>&lt;style&gt;<br/>.li_style&nbsp;{list-style-type:none;}<br/>&lt;/style&gt;<br/>&lt;ul&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;class=&#34;li_style&#34;&gt;百度&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;class=&#34;li_style&#34;&gt;雅虎&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;class=&#34;li_style&#34;&gt;新浪&lt;/li&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&nbsp;class=&#34;li_style&#34;&gt;谷歌&lt;/li&gt;<br/>&lt;/ul&gt;<br/>&nbsp;<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=230" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=230</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[夜景]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=6" label="相册┊Photo" /> 
	  <updated>2009-08-25T23:13:07+08:00</updated>
	  <published>2009-08-25T23:13:07+08:00</published>
		  <summary type="html"><![CDATA[<img src="http://www.qingdou.com/blog/attachments/month_0908/j2009825231238.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0908/p2009825231248.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0908/m2009825231254.jpg" border="0" alt=""/><br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0908/c200982523132.jpg" border="0" alt=""/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=229" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=229</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[flash as常用代码集锦]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=5" label="收藏┊Collection" /> 
	  <updated>2009-08-20T15:31:11+08:00</updated>
	  <published>2009-08-20T15:31:11+08:00</published>
		  <summary type="html"><![CDATA[1、用flash&nbsp;做那种弹出的小窗口<br/>&nbsp;&nbsp;&nbsp;&nbsp;分两步：&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;给flash中的按钮加入如下action:&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;on&nbsp;(release)&nbsp;{&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;geturl&nbsp;(&#34;javascript:mm_openbrwindow(&#39;newweb.htm&#39;,&#39;&#39;,&#39;width=600,height=100&#39;)&#34;);&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;在html页面的...之间加入下面的javascript代码.&nbsp;<br/><br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;2、如何使得flash一打开就是全屏？<br/>&nbsp;&nbsp;&nbsp;&nbsp;fscommand(&#34;fullscreen&#34;,true)<br/>&nbsp;&nbsp;&nbsp;&nbsp;如何不能使用右键?<br/>&nbsp;&nbsp;&nbsp;&nbsp;fscommand&nbsp;(&#34;showmenu&#34;,&nbsp;&#34;false&#34;);<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;3、用命令载入一个动画，我需要确定载入动画在画面中的位置，用什么语言来设置？<br/>&nbsp;&nbsp;&nbsp;&nbsp;例如载入名为dd.swf的动画，我要确定这个动画的中心位置在（205，250），该怎么设置？<br/>&nbsp;&nbsp;&nbsp;&nbsp;在要加载动画的那钟加入<br/>&nbsp;&nbsp;&nbsp;&nbsp;loadmovie(&#34;dd.swf&#34;,&nbsp;&#34;a&#34;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;a._x=205;<br/>&nbsp;&nbsp;&nbsp;&nbsp;a._y=250;<br/>&nbsp;&nbsp;&nbsp;&nbsp;你得先做一个空的mc起名叫&#34;a&#34;，导入时,在右下角也起名为a<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;4、当鼠标经过时动画播放到某处<br/>&nbsp;&nbsp;&nbsp;&nbsp;on&nbsp;(rollover)&nbsp;{<br/>&nbsp;&nbsp;&nbsp;&nbsp;gotoandplay(10);<br/>&nbsp;&nbsp;&nbsp;&nbsp;}<br/>&nbsp;&nbsp;&nbsp;&nbsp;当鼠标按下时动画播放到某处<br/>&nbsp;&nbsp;&nbsp;&nbsp;on&nbsp;(release)&nbsp;{<br/>&nbsp;&nbsp;&nbsp;&nbsp;gotoandplay(1);<br/>&nbsp;&nbsp;&nbsp;&nbsp;}<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;5、播完动画后自动跳到某网页<br/>&nbsp;&nbsp;&nbsp;&nbsp;geturl(&#34;siteindex.htm&#34;,&nbsp;_self);<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;6、设为首页<br/>&nbsp;&nbsp;&nbsp;&nbsp;on&nbsp;(release)&nbsp;{&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;geturl(&#34;javascript:void(document.links.style.behavior=&#39;url(#default#homepage)&#39;);void&nbsp;document.links.sethomepage&nbsp;&nbsp;&nbsp;&nbsp;(&#39;<a href="http://www.flash8.net/" target="_blank">http://www.flash8.net/</a>&#39;)&#34;,&nbsp;&#34;_self&#34;,&nbsp;&#34;post&#34;);&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;注意要将网页中的flash的id号命名为&#34;links&#34;<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;加入收藏夹&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;on&nbsp;(release)&nbsp;{&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;geturl(&#34;javascript:void&nbsp;window.external.addfavorite(&#39;<a href="http://www.163.com" target="_blank">http://www.163.com</a>&#39;,&#39;网页&#39;);&#34;,&nbsp;&#34;_self&#34;,&nbsp;&#34;post&#34;);&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;7、关于随机数的技巧<br/>&nbsp;&nbsp;&nbsp;&nbsp;用来产生6--20之间的5个不重复的随机数:&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;1):首先产生一个随机数,放在数组对象中的第一个位置;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;2):产生一个新的随机数.&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;3):检查新产生的随机数和所有目前已产生的随机数是否相同,若是相同则返回(2),否则返回(4)&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;4):将新的随机数加入数组对象中下一个数组元素内.&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;5):检查数组对象个数是否已达到5个,若是跳到(6),否则返回(2)&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;6):结束.&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;as如下:&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;data1=newarray(5);&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;tot=1;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;data1=[tot-1]=random(20-6+1)+6;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;do{&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;gen_data=random(20-6+1)+6;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;reapeat_data=0;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;for(i=0,i&lt;=tot-1;i++){&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;if(gen_data==data&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;reapeat_data=1;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;break;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;if(reapeat_data==0){&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;tot++&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;data[tot-1]=reapeat_data;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}while(tot&lt;5);&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;trace(data1);&nbsp;<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;、如何使得flash一打开就是全屏的<br/>&nbsp;&nbsp;&nbsp;&nbsp;这里说的方法只是用于flash&nbsp;player&nbsp;(fp)<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;、如何禁止右键菜单<br/>&nbsp;&nbsp;&nbsp;&nbsp;fscommand的方法还是只能适用于fp，在网页中使用还是必须添加额外的参数<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;或者用最简单的一句as，在fp和网页中均适用：<br/>&nbsp;&nbsp;&nbsp;&nbsp;stage.showmenu=false;<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;10、载入动画的问题<br/>&nbsp;&nbsp;&nbsp;&nbsp;loadmovie(&#34;dd.swf&#34;,&nbsp;a);&nbsp;//这里没有引号~<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;11、播完动画后自动跳到某网页<br/>&nbsp;&nbsp;&nbsp;&nbsp;geturl(&#34;siteindex.htm&#34;,&nbsp;&#34;_self&#34;);&nbsp;//这里有引号滴<br/><br/><br/>本文来自CSDN博客，转载请标明出处：<a href="http://blog.csdn.net/xxyakoo/archive/2008/10/13/3071243.aspx" target="_blank">http://blog.csdn.net/xxyakoo/archive/2008/10/13/3071243.aspx</a>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=228" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=228</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[Fox IE6 IE7兼容的问题]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=19" label="DIV┊div+css" /> 
	  <updated>2009-08-19T16:34:15+08:00</updated>
	  <published>2009-08-19T16:34:15+08:00</published>
		  <summary type="html"><![CDATA[很早就在这里看到过解决方案，与嗷嗷讨论后发现这个方案还是很可靠的。当然，唯一的缺点就是每一个属性都要去Hack，但我在很多实践中，只用‘修正’1-2个属性就可以了。<br/><br/>具体写法很容易：<br/><br/>#someNode<br/>{<br/>&nbsp;&nbsp;&nbsp;&nbsp;position:&nbsp;fixed;<br/>&nbsp;&nbsp;&nbsp;#position:&nbsp;fixed;<br/>&nbsp;&nbsp;&nbsp;_position:&nbsp;fixed;<br/>}<br/>第一排给Firefox以及其他浏览器看&nbsp;<br/>第二排给IE7（可能以后的IE8、IE9也是如此，谁知道呢）看&nbsp;<br/>第三排给IE6以及更老的版本看&nbsp;<br/>最好的应用就是可以让IE6也“支持”position:fixed，而且，配合这个原理，可以做到不引入JavaScript代码（仅用IE6的expression），我这里有一个现成的页面，CSS如下写：<br/><br/>#ff-r<br/>{<br/>&nbsp;position:&nbsp;&nbsp;fixed;<br/>_position:&nbsp;&nbsp;absolute;<br/>&nbsp;right:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15px;<br/>&nbsp;top:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15px;<br/>_top:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;expression(eval(document.compatMode&nbsp;&amp;&amp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;document.compatMode==&#39;CSS1Compat&#39;)&nbsp;?<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;documentElement.scrollTop+15&nbsp;:<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;document.body.scrollTop&nbsp;+<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(document.body.clientHeight<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-this.clientHeight));<br/>}<br/>是不是很方便 <img src="http://www.qingdou.com/blog/images/smilies/Face_07.gif" border="0" style="margin:0px 0px -2px 0px" alt=""/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=227" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=227</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[一套LOGO的设计]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=7" label="作品┊Work" /> 
	  <updated>2009-06-11T11:25:06+08:00</updated>
	  <published>2009-06-11T11:25:06+08:00</published>
		  <summary type="html"><![CDATA[一套LOGO的设计，最后定的是下面的设计<br/><img src="http://www.qingdou.com/blog/attachments/month_0906/i2009611111411.jpg" border="0" alt=""/><br/><br/>和页面上的一些广告的设计<br/><img src="http://www.qingdou.com/blog/attachments/month_0906/s200961111253.jpg" border="0" alt=""/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=226" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=226</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[一个企业的英文页面]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=12" label="Web设计┊Web" /> 
	  <updated>2009-06-11T11:10:10+08:00</updated>
	  <published>2009-06-11T11:10:10+08:00</published>
		  <summary type="html"><![CDATA[一个企业的英文页面<br/><br/><img src="http://www.qingdou.com/blog/attachments/month_0906/h200961111842.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0906/v200961111853.jpg" border="0" alt=""/><br/><br/>下面是跟据企业VI风格设计的一级和二级页面<br/><img src="http://www.qingdou.com/blog/attachments/month_0906/3200961111930.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0906/7200961111941.jpg" border="0" alt=""/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=225" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=225</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[移动3G的一个小页子]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=12" label="Web设计┊Web" /> 
	  <updated>2009-06-11T11:00:58+08:00</updated>
	  <published>2009-06-11T11:00:58+08:00</published>
		  <summary type="html"><![CDATA[移动3G的一个小页子<br/><img src="http://www.qingdou.com/blog/attachments/month_0906/5200961111056.jpg" border="0" alt=""/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=224" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=224</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[给朋友做的一个页子]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=12" label="Web设计┊Web" /> 
	  <updated>2009-06-11T10:31:03+08:00</updated>
	  <published>2009-06-11T10:31:03+08:00</published>
		  <summary type="html"><![CDATA[给朋友做的一个页子<br/><img src="http://www.qingdou.com/blog/attachments/month_0906/m2009611103418.jpg" border="0" alt=""/><br/><br/><a href="http://www.bjhuanyatd.com/" target="_blank">http://www.bjhuanyatd.com/</a><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=223" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=223</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[09春天——桃花]]></title>
	  <author>
		 <name>青豆</name>
		 <uri>http://www.qingdou.com/blog/</uri>
		 <email>han_zf08@sina.com</email>
	  </author>
	  <category term="" scheme="http://www.qingdou.com/blog/default.asp?cateID=6" label="相册┊Photo" /> 
	  <updated>2009-03-20T15:04:07+08:00</updated>
	  <published>2009-03-20T15:04:07+08:00</published>
		  <summary type="html"><![CDATA[桃花;春天<br/><img src="http://www.qingdou.com/blog/attachments/month_0903/2200932014574.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/12009320145723.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/v2009320145810.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/c2009320145854.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/w2009320145921.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/p2009320145941.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/120093201510.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/c200932015113.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/8200932015128.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/8200932015139.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/t200932015152.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/p20093201525.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/n200932015225.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/c200932015248.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/22009320145823.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/u200932015236.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/i20093201509.jpg" border="0" alt=""/><br/><img src="http://www.qingdou.com/blog/attachments/month_0903/z200932015025.jpg" border="0" alt=""/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.qingdou.com/blog/default.asp?id=222" /> 
	  <id>http://www.qingdou.com/blog/default.asp?id=222</id> 
  </entry>	
		
</feed>