<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>80年代 &#187; 2009</title>
	<atom:link href="http://hi1980.com/tag/2009/feed" rel="self" type="application/rss+xml" />
	<link>http://hi1980.com</link>
	<description>热衷于IT WEB Flash Design Music</description>
	<lastBuildDate>Tue, 17 Aug 2010 07:01:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>根据时间变换场景动画</title>
		<link>http://hi1980.com/2009/02/02/scenes-based-on-time.html</link>
		<comments>http://hi1980.com/2009/02/02/scenes-based-on-time.html#comments</comments>
		<pubDate>Mon, 02 Feb 2009 10:48:38 +0000</pubDate>
		<dc:creator>wulinfo</dc:creator>
				<category><![CDATA[设计作品]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[时间]]></category>

		<guid isPermaLink="false">http://blog.hi1980.com/?p=121</guid>
		<description><![CDATA[动画根据电脑时间变换动画场景，分别是早上、中午、晚上三个场景，觉得比较适合放再网站的top上面，根据访问者的本地电脑时间变换不同场景]]></description>
			<content:encoded><![CDATA[<p>动画根据电脑时间变换动画场景，分别是早上、中午、晚上三个场景，觉得比较适合放再网站的top上面，这样可以根据访问者的本地电脑时间变换不同场景，从而给访问用户一种关怀备至的感觉。<span id="more-121"></span></p>
<p>动画分为三个节点动画，通过时间分段 上午06:00 ~12:00  下午12:00~19:00  夜间19:00~06:00  触发播放动画指定帧</p>
<p>场景截图</p>
<p><a href="http://qefoag.bay.livefilestore.com/y1pM1mKDRZ_2CoEEOHZ3gzlIlR_SacWhYMmvXj4oLyT_IApOY10Ym5rPz_6vd4WWvlNTAsbNNKxiwV8uBL2l2BGWg/%E6%97%A0%E6%A0%87%E9%A2%98.jpg" class="highslide-image" onclick="return hs.expand(this);" target="_blank"><img src="http://qefoag.bay.livefilestore.com/y1pM1mKDRZ_2CoEEOHZ3gzlIlR_SacWhYMmvXj4oLyT_IApOY10Ym5rPz_6vd4WWvlNTAsbNNKxiwV8uBL2l2BGWg/%E6%97%A0%E6%A0%87%E9%A2%98.jpg" alt="" width="600" /></a></p>
<p><!--more-->演示：</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="250" height="200" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://qefuag.blu.livefilestore.com/y1pkdJ9f3PFtGxb36shRtBqEkXI19PZfzSAPYwWhg1On_xU2QRK33Rbst20MEVcbGlWcniILZPpI0YPSoVrXKLLoA/TimeToScene.swf" /><param name="quality" value="high" /><param name="src" value="http://qefuag.blu.livefilestore.com/y1pkdJ9f3PFtGxb36shRtBqEkXI19PZfzSAPYwWhg1On_xU2QRK33Rbst20MEVcbGlWcniILZPpI0YPSoVrXKLLoA/TimeToScene.swf" /><embed type="application/x-shockwave-flash" width="250" height="200" src="http://qefuag.blu.livefilestore.com/y1pkdJ9f3PFtGxb36shRtBqEkXI19PZfzSAPYwWhg1On_xU2QRK33Rbst20MEVcbGlWcniILZPpI0YPSoVrXKLLoA/TimeToScene.swf" quality="high" data="http://qefuag.blu.livefilestore.com/y1pkdJ9f3PFtGxb36shRtBqEkXI19PZfzSAPYwWhg1On_xU2QRK33Rbst20MEVcbGlWcniILZPpI0YPSoVrXKLLoA/TimeToScene.swf"></embed></object></p>
<p>时间触发代码：</p>
<pre class="brush: java;">onClipEvent (load)
 {
 timedate = new Date();
 hour = timedate.getHours();
 if (hour &gt;= 6 &amp;&amp; hour &lt; 12)
 {
 this.gotoAndStop(&quot;morning&quot;);
 } // end if
 if (hour &gt;= 12 &amp;&amp; hour &lt; 19)
 {
 this.gotoAndStop(&quot;midday&quot;);
 } // end if
 if (hour &gt;= 19 || hour &lt; 6)
 {
 this.gotoAndStop(&quot;night&quot;);
 } // end if
 }
 onClipEvent (enterFrame)
 {
 hour1 = timedate.getHours();
 minutes = timedate.getMinutes();
 seconds = timedate.getSeconds();
 if (length(minutes) == 1)
 {
 minutes = &quot;0&quot; + minutes;
 } // end if
 if (length(seconds) == 1)
 {
 seconds = &quot;0&quot; + seconds;
 } // end if
 times = hour1 + &quot;:&quot; + minutes + &quot;:&quot; + seconds;
 _root.times = times;
 if (times == &quot;6:00:00&quot;)
 {
 this.gotoAndPlay(&quot;morning-b&quot;);
 } // end if
 if (times == &quot;12:00:00&quot;)
 {
 this.gotoAndPlay(&quot;midday-b&quot;);
 } // end if
 if (times == &quot;19:00:00&quot;)
 {
 this.gotoAndPlay(&quot;night-b&quot;);
 } // end if
 delete timedate;
 timedate = new Date();
 }</pre>
<p><br class="spacer_" /></p>
<p>源码下载：</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="250" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.box.net/static/flash/box_explorer.swf?widgetHash=jkggh5np43&amp;cl=1" /><param name="wmode" value="transparent" /><param name="src" value="http://www.box.net/static/flash/box_explorer.swf?widgetHash=jkggh5np43&amp;cl=1" /><embed type="application/x-shockwave-flash" width="500" height="250" src="http://www.box.net/static/flash/box_explorer.swf?widgetHash=jkggh5np43&amp;cl=1" wmode="transparent" data="http://www.box.net/static/flash/box_explorer.swf?widgetHash=jkggh5np43&amp;cl=1"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hi1980.com/2009/02/02/scenes-based-on-time.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2009牛气冲天</title>
		<link>http://hi1980.com/2009/01/25/designed-2009.html</link>
		<comments>http://hi1980.com/2009/01/25/designed-2009.html#comments</comments>
		<pubDate>Sat, 24 Jan 2009 16:00:01 +0000</pubDate>
		<dc:creator>wulinfo</dc:creator>
				<category><![CDATA[设计作品]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[设计]]></category>

		<guid isPermaLink="false">http://blog.hi1980.com/?p=117</guid>
		<description><![CDATA[中国农历年就马上要到了，所以先发此文祝大家：一家和和睦睦，一年开开心心，一生快快乐乐，一世平平安安，天天精神百倍，月月喜气洋洋，年年财源广进]]></description>
			<content:encoded><![CDATA[<p>中国农历年就马上要到了，所以先发此文祝大家：一家和和睦睦，一年开开心心，一生快快乐乐，一世平平安安，天天精神百倍，月月喜气洋洋，年年财源广进。<br />
<a href="http://hi1980.com/logo/logo-miu.swf?id=wulinfo" target="_blank"><img title="牛气冲天" src="http://bc8ama.bay.livefilestore.com/y1pdUM5VKiAzyi6GMDsX1rnVisv2l9BKpAk9S3zNTxY_-nEjVcUOoZeWaR4zdAtsDwof4N7hZI5t8YAnnL-EYl0Pw/%E7%89%9B%E6%B0%94%E5%86%B2%E5%A4%A9%E5%8A%A8%E7%94%BB.jpg" alt="" width="600" height="359" /></a></p>
<p>从<a href="http://hi1980.com/" target="_blank">首页</a>进入本站的朋友能看见欢迎页上面的牛气冲天欢迎Flash动画，以logo为中心制作的一副挺有幽默感的贺年界面，点子来自边制作边想象，本想弄些音效，令动画更能表达它的意义，但想想login会很久就算了，虽然动画不怎么生动，但那可是我的心意，但还有一个优点就是饭否api，可以动态获取饭否即时日志。<span id="more-117"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://hi1980.com/logo/logo-miu.swf?id=wulinfo" /><param name="src" value="http://hi1980.com/logo/logo-miu.swf?id=wulinfo" /><embed type="application/x-shockwave-flash" width="500" height="300" src="http://hi1980.com/logo/logo-miu.swf?id=wulinfo" data="http://hi1980.com/logo/logo-miu.swf?id=wulinfo"></embed></object></p>
<p><a href="http://hi1980.com/logo/logo-miu.swf?id=wulinfo" target="_blank"><span style="text-decoration: underline;">完整版</span></a></p>
<p>发完此文我也回家过年了，回家真好！</p>
]]></content:encoded>
			<wfw:commentRss>http://hi1980.com/2009/01/25/designed-2009.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>2009新年快乐</title>
		<link>http://hi1980.com/2009/01/01/happy-new-year-2009.html</link>
		<comments>http://hi1980.com/2009/01/01/happy-new-year-2009.html#comments</comments>
		<pubDate>Wed, 31 Dec 2008 16:10:01 +0000</pubDate>
		<dc:creator>wulinfo</dc:creator>
				<category><![CDATA[自言自语]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[中国年]]></category>
		<category><![CDATA[农历年]]></category>
		<category><![CDATA[年]]></category>

		<guid isPermaLink="false">http://blog.hi1980.com/?p=91</guid>
		<description><![CDATA[2009年降临了，在这新的一年里我做了些很疯狂的事情，洗了一个两年才完成的澡，洗了一身两年的脏衣服（希望洗去去年的霉气），喝了一杯沏两年的陈年茶（陈年的醋，陈年的茶都一样好），运作着两年未关闭的电脑，看了一部两年才看完的电影，敲打着键盘送上两年的祝福]]></description>
			<content:encoded><![CDATA[<p>2009年降临了，在这新的一年里我做了些很疯狂的事情，洗了一个两年才完成的澡，洗了一身两年的脏衣服（希望洗去去年的霉气），喝了一杯沏两年的陈年茶（陈年的醋，陈年的茶都一样好），运作着两年未关闭的电脑，看了一部两年才看完的电影，敲打着键盘送上两年的祝福：</p>
<p>2009年，祝大家新年快乐，一切更好&#8230;没有华丽的言语，送大家《福》吧</p>
<p><a href="http://images42.fotki.com/v1380/photos/1/1436477/7008428/b-vi.jpg" class="highslide-image" onclick="return hs.expand(this);"><img src="http://images42.fotki.com/v1380/photos/1/1436477/7008428/b-vi.jpg" alt="" width="500" height="500" /></a></p>
<p>最后，敲打着键盘发表了一篇两年才完成的文章</p>
]]></content:encoded>
			<wfw:commentRss>http://hi1980.com/2009/01/01/happy-new-year-2009.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009美国经济十大预言</title>
		<link>http://hi1980.com/2008/12/25/2009-predicted-that-the-us-economy.html</link>
		<comments>http://hi1980.com/2008/12/25/2009-predicted-that-the-us-economy.html#comments</comments>
		<pubDate>Wed, 24 Dec 2008 16:26:59 +0000</pubDate>
		<dc:creator>wulinfo</dc:creator>
				<category><![CDATA[东抄西摘]]></category>
		<category><![CDATA[2009]]></category>

		<guid isPermaLink="false">http://blog.hi1980.com/?p=85</guid>
		<description><![CDATA[<p>　　比预测未来更加费力不讨好的惟一一件事就是让别人分享你的预测了。但圣诞节是分享的季节，因此我也献上对2009年的预测。当然，读者要擦亮眼睛，其中的许多预测可能会出现错误。但我愿意用我的哈佛大学MBA学位担保，其中至少有3个是正确的，好了，两个总可以了吧。</p>
<p>　　<strong>预言1：通用汽车将在4月底申请破产保护。</strong></p>
<p>　　问题资产救助计划的资金会让通用汽车苟延残喘到2010年吗？门都没有。债券持有人和全美汽车工人联合会将争来争去。瓦格纳会被炒鱿鱼。而还未到任的政府行业管理者&#8220;汽车沙皇&#8221;将对这一切感到厌倦。最终，国会不会提供通用汽车真正需要的500亿美元。</p>
...]]></description>
			<content:encoded><![CDATA[<p>比预测未来更加费力不讨好的惟一一件事就是让别人分享你的预测了。但圣诞节是分享的季节，因此我也献上对2009年的预测。当然，读者要擦亮眼睛，其中的许多预测可能会出现错误。但我愿意用我的哈佛大学MBA学位担保，其中至少有3个是正确的，好了，两个总可以了吧。</p>
<p><strong>预言1：通用汽车将在4月底申请破产保护。</strong></p>
<p>问题资产救助计划的资金会让通用汽车苟延残喘到2010年吗？门都没有。债券持有人和全美汽车工人联合会将争来争去。瓦格纳会被炒鱿鱼。而还未到任的政府行业管理者“汽车沙皇”将对这一切感到厌倦。最终，国会不会提供通用汽车真正需要的500亿美元。</p>
<p><strong>预言2：麦道夫将在审判中称自己疯了（而不能为自己的行为负责），但以失败告终。</strong></p>
<p>在这个充斥着借口的年代，为什么他就不能找个借口逃脱呢？他会为自己请来能用金钱收买到的最好的律师，这些人会罗列出一大堆证明他疯了的理由。但这没什么用。判决结果呢？他还是有罪。</p>
<p><strong>预言3：高盛将收购亿创理财，大举进军网上银行业。</strong></p>
<p>高盛首席执行官劳埃德·布兰克费恩大张旗鼓地捍卫华尔街的传统业务模式。但他清楚这种表演应该谢幕了。</p>
<p><strong>预言4：华尔街将再收缩25%。</strong></p>
<p>华尔街将会惊恐地发现，这次真的是今非昔比了。到4月份时，会有更多的裁员。到明年秋末时，还会再有一轮裁员。总的来说，华尔街有1/4的工作将在2009年消失。</p>
<p><strong>预言5：苹果将迎来新首席执行官。</strong></p>
<p>没什么大惊小怪的。最终，乔布斯和苹果董事会将对无休止的质疑和困惑感到厌倦。</p>
<p><strong>预言6：彭博资讯的创始人布隆伯格将收购纽约时报公司。</strong></p>
<p>一个让人耳朵磨出老茧的传言最终也将变成现实。在竞购大战中，布隆伯格将会胜出，使其在纽约的影响力超出第三任市长任期。</p>
<p><strong>预言7：原油价格2009年大多数时间将在每桶30美元左右徘徊。</strong></p>
<p>欧佩克对每桶30美元的油价不会满意。但如果奥巴马大力推行其狂热的反化石燃料计划，欧佩克会更不高兴。因此欧佩克会继续将油价维持在低位，直到美国会再次认为每加仑汽油1.50美元的价格会一直保持下去。这会持续一年左右时间。油价在2009年底将重回每桶50美元。</p>
<p><strong>预言8：2009年表现最差的全球市场将是当代艺术品市场。</strong></p>
<p>泡沫最大的奢侈品市场将竞相寻找底部，如长岛汉普顿海滩的房屋和纽约市中心的公寓。但当代艺术品市场将是其中最大的输家。当过去几年投资艺术品的许多人认识到他们陷入了另一场庞式骗局，艺术品市场也会基本上消失。</p>
<p><strong>预言9：标准普尔500指数2009年将收于1200点，上涨30%。</strong></p>
<p>在上周末的《巴伦周刊》上，12位华尔街精明的策略师中有11人预计2009年标准普尔500指数将收于975点至1100点之间。这种共识几乎从来都是错误的。到明年夏末时，3/4的公司收益将会开始上升，投资者的贪婪将取代退缩，年末时的反弹将推动标准普尔指数攻上1200点。</p>
<p><strong>预言10：奥巴马总统将迎来总统历史上最为成功的上任之年。</strong></p>
<p>没有什么能比别人的失败更能衬托出你的优秀了。到2010年初，随着经济的好转，美国人会将奥巴马同拉什莫尔山中的那些总统相提并论。（琼斯）</p>
<p>来自<a href="http://finance.people.com.cn/GB/1037/8568915.html" target="_blank">人民网</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hi1980.com/2008/12/25/2009-predicted-that-the-us-economy.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
