<?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>久酷 &#187; 网站链接</title>
	<atom:link href="http://www.jiucool.com/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jiucool.com</link>
	<description>Say That What I Can Say!</description>
	<lastBuildDate>Thu, 12 Jan 2012 23:09:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.jiucool.com/?pushpress=hub'/>
		<item>
		<title>网页百分比加载进度条效果代码</title>
		<link>http://www.jiucool.com/percentage-loading/</link>
		<comments>http://www.jiucool.com/percentage-loading/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 01:02:46 +0000</pubDate>
		<dc:creator>久酷</dc:creator>
				<category><![CDATA[互联网络]]></category>
		<category><![CDATA[正在加载]]></category>
		<category><![CDATA[正在加载效果]]></category>
		<category><![CDATA[网站代码]]></category>
		<category><![CDATA[网站链接]]></category>

		<guid isPermaLink="false">http://www.jiucool.com/?p=5120</guid>
		<description><![CDATA[在某论坛发现了一个如此不错的效果，进入网站时可以显示一个百分比加载进度条。

&#60;style type=&#8221;text/css&#8221;&#62;

 #out {

 width:200px;

 height:16px !important;

 border:1px solid #5858D1;

<span class="readmore"><a href="http://www.jiucool.com/percentage-loading/" title="网页百分比加载进度条效果代码">Read More: 854 Words Totally</a></span>]]></description>
			<content:encoded><![CDATA[<p>在某论坛发现了一个如此不错的效果，进入网站时可以显示一个百分比加载进度条。</p>
<blockquote><p>&lt;style type=&#8221;text/css&#8221;&gt;<br />
 #out {<br />
 width:200px;<br />
 height:16px !important;<br />
 border:1px solid #5858D1;<br />
 text-align:center;<br />
 position:relative;<br />
 font-size:12px;<br />
 _height:18px;<br />
 }<br />
 #out, #out * {<br />
 padding:0;<br />
 margin:0;<br />
 }<br />
 #num {<br />
 height:16px;<br />
 line-height:16px;<br />
 position:absolute;<br />
 top:0;<br />
 left:90px;<br />
 z-index:1001;<br />
 }<br />
 #step {<br />
 background:#5858D1;<br />
 width:1%;<br />
 overflow:hidden;<br />
 position:absolute;<br />
 left:0;<br />
 top:0;<br />
 height:16px;<br />
 z-index:1000;<br />
 }<br />
 &lt;/style&gt;</p>
<p> &lt;div id=&#8221;out&#8221;&gt;<br />
 &lt;span id=&#8221;num&#8221;&gt;1%&lt;/span&gt;<br />
 &lt;div id=&#8221;step&#8221;&gt;&lt;/div&gt;<br />
 &lt;/div&gt;</p>
<p> &lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p> var timer;<br />
 var stepNum = 0;<br />
 function start()<br />
 {<br />
 timer = setInterval(&#8220;begin()&#8221;, 10);<br />
 }</p>
<p> function begin()<br />
 {<br />
 stepNum += 1;<br />
 if (stepNum &lt; 101)<br />
 {<br />
 document.getElementById(&#8220;step&#8221;).style.width = stepNum + &#8220;%&#8221;;<br />
 document.getElementById(&#8220;num&#8221;).innerHTML = stepNum + &#8220;%&#8221;;<br />
 }<br />
 else<br />
 {<br />
 clearInterval(timer);</p>
<p> // 加载完了，该干嘛干嘛<br />
 window.location = &#8216;http://www.jiucool.com&#8217;;<br />
 }<br />
 }</p>
<p> window.onload = function()<br />
 {<br />
 start();<br />
 }<br />
 &lt;/script&gt;</p>
</blockquote>
<p>No related posts.</p><br/>
<a href="http://www.jiucool.com/godaddy-domain" target="_blank"><img src="http://pic.jiucool.com/2010/godaddy_score_savings_468x60.jpg" /></a>
<hr />
<p><small>© 久酷 for <a href="http://www.jiucool.com">久酷</a>, 2008. |
<a href="http://www.jiucool.com/percentage-loading/" target="_blank">Permalink</a> |
<a href="http://www.jiucool.com/percentage-loading/#comments">No comment</a> |
Twitter:
<a href="http://twitter.com/jiucool" target="_blank">@jiucool</a>
<br/>
Post tags: <a href="http://www.jiucool.com/tag/%e6%ad%a3%e5%9c%a8%e5%8a%a0%e8%bd%bd/" rel="tag">正在加载</a>, <a href="http://www.jiucool.com/tag/%e6%ad%a3%e5%9c%a8%e5%8a%a0%e8%bd%bd%e6%95%88%e6%9e%9c/" rel="tag">正在加载效果</a>, <a href="http://www.jiucool.com/tag/%e7%bd%91%e7%ab%99%e4%bb%a3%e7%a0%81/" rel="tag">网站代码</a>, <a href="http://www.jiucool.com/tag/web/" rel="tag">网站链接</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.jiucool.com/percentage-loading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera发布免费全套Web 标准课程</title>
		<link>http://www.jiucool.com/opera-released-a-full-set-of-web-standards-for-free-courses/</link>
		<comments>http://www.jiucool.com/opera-released-a-full-set-of-web-standards-for-free-courses/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 11:36:59 +0000</pubDate>
		<dc:creator>久酷</dc:creator>
				<category><![CDATA[互联网络]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web设计标准]]></category>
		<category><![CDATA[网站链接]]></category>
		<category><![CDATA[网页设计标准]]></category>

		<guid isPermaLink="false">http://www.jiucool.com/?p=3021</guid>
		<description><![CDATA[应该说是一个令人兴奋的消息，opera 中国团队博客上发布了Web 标准课程，并且全套教程完全免费，任何人都可以学习！

以后有时间的时候要经常到此网站学习一下！网上混的不懂网上的标准咋行呢？大家说是吧？     

这应该是广大网页爱好者、网页编程及设计人员的福音！此套Web标准课程的发起人和编辑是Chris Mills，Chris Mills是Opera公司的开发人员关系部经理，他在 dev.opera.com 和 labs.opera.com 这两个站点上编辑和发表文章，负责与社区社会团体联系，以提高Opera公司的知名度并收集反馈信息，并负责推广Opera公司的软件。

<span class="readmore"><a href="http://www.jiucool.com/opera-released-a-full-set-of-web-standards-for-free-courses/" title="Opera发布免费全套Web 标准课程">Read More: 646 Words Totally</a></span>]]></description>
			<content:encoded><![CDATA[<div style="float: right"><a title="opera" rel="tag" href="http://www.jiucool.com/tag/opera"><img src="http://www.jiucool.com/images/opera.png" alt="opera" /></a></div>
<p>应该说是一个令人兴奋的消息，opera 中国团队博客上发布了Web 标准课程，并且全套教程完全免费，任何人都可以学习！</p>
<p>以后有时间的时候要经常到此网站学习一下！网上混的不懂网上的标准咋行呢？大家说是吧？ <img src='http://www.jiucool.com/wp/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />   <img src='http://www.jiucool.com/wp/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p>这应该是广大网页爱好者、网页编程及设计人员的福音！此套Web标准课程的发起人和编辑是Chris Mills，Chris Mills是Opera公司的开发人员关系部经理，他在 <a href="http://dev.opera.com/">dev.opera.com</a> 和 <a href="http://labs.opera.com/">labs.opera.com</a> 这两个站点上编辑和发表文章，负责与社区社会团体联系，以提高Opera公司的知名度并收集反馈信息，并负责推广Opera公司的软件。</p>
<p>迄今为止本课程下的39篇文章已经发布，还有10多篇文章也将尽快发布，组成完整的课程。</p>
<p>为什么要了解最新WEB标准呢？？</p>
<ol>
<li>提高代码的利用效率</li>
<li>易于维护</li>
<li>提高可访问性 </li>
<li>设备兼容性</li>
<li>网络爬虫/搜索引擎</li>
</ol>
<p>尽管使用Web标准有以上诸多优点，但多数Web站点至今还尚未遵循Web标准，而且时至今日很多Web开发人员都还在使用过时的、不好的习惯。你会问“ 为什么会出现这种情况呢？”。原因当然有很多，这包括缺乏教育和培训、公司政策、不用学习标准也能领到薪水、学习太难、浏览器所支持的标准等。</p>
<p>此课程的最新更新版本为：</p>
<p>中文版地址在：<a href="http://team.operachina.com/wsc/" target="_blank">http://team.operachina.com/wsc/<br />
 </a></p>
<p>英文版地址在：<a href="http://dev.opera.com/articles/view/1-introduction-to-the-web-standards-cur/" target="_blank">http://dev.opera.com/articles/view/1-introduction-to-the-web-standards-cur/</a></p>
<p>No related posts.</p><br/>
<a href="http://www.jiucool.com/godaddy-domain" target="_blank"><img src="http://pic.jiucool.com/2010/godaddy_score_savings_468x60.jpg" /></a>
<hr />
<p><small>© 久酷 for <a href="http://www.jiucool.com">久酷</a>, 2008. |
<a href="http://www.jiucool.com/opera-released-a-full-set-of-web-standards-for-free-courses/" target="_blank">Permalink</a> |
<a href="http://www.jiucool.com/opera-released-a-full-set-of-web-standards-for-free-courses/#comments">22 comments</a> |
Twitter:
<a href="http://twitter.com/jiucool" target="_blank">@jiucool</a>
<br/>
Post tags: <a href="http://www.jiucool.com/tag/design/" rel="tag">design</a>, <a href="http://www.jiucool.com/tag/web-design/" rel="tag">web design</a>, <a href="http://www.jiucool.com/tag/web%e8%ae%be%e8%ae%a1%e6%a0%87%e5%87%86/" rel="tag">web设计标准</a>, <a href="http://www.jiucool.com/tag/web/" rel="tag">网站链接</a>, <a href="http://www.jiucool.com/tag/%e7%bd%91%e9%a1%b5%e8%ae%be%e8%ae%a1%e6%a0%87%e5%87%86/" rel="tag">网页设计标准</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.jiucool.com/opera-released-a-full-set-of-web-standards-for-free-courses/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>好好做人,好好做网站</title>
		<link>http://www.jiucool.com/hao-hao-zuo-ren-hao-hao-zuo-wang-zhan/</link>
		<comments>http://www.jiucool.com/hao-hao-zuo-ren-hao-hao-zuo-wang-zhan/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 17:12:30 +0000</pubDate>
		<dc:creator>久酷</dc:creator>
				<category><![CDATA[其他文章]]></category>
		<category><![CDATA[正规网站]]></category>
		<category><![CDATA[网站]]></category>
		<category><![CDATA[网站链接]]></category>

		<guid isPermaLink="false">http://www.jiucool.com/?p=671</guid>
		<description><![CDATA[严打了啊,呵呵 &#8230; 今天在空间服务商的客服群里看到这样网站了啊.嗯,做人要做个好人.做网站也是一样的道理啊. 身正才不怕影子歪嘛    好好做人,好好做网站 ^^

非法网站

Related posts:

又一个wordpress AJAX paged comments 插件

feedsky话题广告有钱不能赚，郁闷

坐在湖边的我

<span class="readmore"><a href="http://www.jiucool.com/hao-hao-zuo-ren-hao-hao-zuo-wang-zhan/" title="好好做人,好好做网站">Read More: 162 Words Totally</a></span>]]></description>
			<content:encoded><![CDATA[<p>严打了啊,呵呵 &#8230; 今天在空间服务商的客服群里看到这样网站了啊.嗯,做人要做个好人.做网站也是一样的道理啊. 身正才不怕影子歪嘛  <img src='http://www.jiucool.com/wp/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  好好做人,好好做网站 ^^</p>
<div id="attachment_670" class="wp-caption aligncenter" style="width: 510px"><a href="http://pic.jiucool.com/2008/08/snap1.jpg"><img class="size-full wp-image-670" title="网站 " src="http://pic.jiucool.com/2008/08/snap1.jpg" alt="非法网站" width="500" height="273" /></a><p class="wp-caption-text">非法网站</p></div>
<p>Related posts:<ol>
<li><a href='http://www.jiucool.com/you-yi-ge-wordpress-ajax-paged-comments-cha-jian/' rel='bookmark' title='又一个wordpress AJAX paged comments 插件'>又一个wordpress AJAX paged comments 插件</a></li>
<li><a href='http://www.jiucool.com/feedsky-hua-ti-guang-gao-you-qian-bu-neng-zhuan-yu-men/' rel='bookmark' title='feedsky话题广告有钱不能赚，郁闷'>feedsky话题广告有钱不能赚，郁闷</a></li>
<li><a href='http://www.jiucool.com/i-am-sitting-in-the-lake/' rel='bookmark' title='坐在湖边的我'>坐在湖边的我</a></li>
<li><a href='http://www.jiucool.com/xiao-qiao-di-zhao-pian-sheng-cheng-qi/' rel='bookmark' title='小巧的照片生成器'>小巧的照片生成器</a></li>
<li><a href='http://www.jiucool.com/wordpress-27-visual-interface-to-write-the-problem/' rel='bookmark' title='WordPress 2.7 的可视化撰写界面问题!'>WordPress 2.7 的可视化撰写界面问题!</a></li>
<li><a href='http://www.jiucool.com/yue-guang-xin-shu-ji-jiang-mian-shi-ming-bo-shi-zen-yang-lian-cheng-di/' rel='bookmark' title='月光新书即将面世-《名博是怎样炼成的》'>月光新书即将面世-《名博是怎样炼成的》</a></li>
<li><a href='http://www.jiucool.com/you-guan-google-adsense-di-some-questions/' rel='bookmark' title='有关google adsense的some questions'>有关google adsense的some questions</a></li>
<li><a href='http://www.jiucool.com/feedsky-you-chu-xian-wen-ti-liao/' rel='bookmark' title='feedsky又出现问题了'>feedsky又出现问题了</a></li>
</ol></p><br/>
<a href="http://www.jiucool.com/godaddy-domain" target="_blank"><img src="http://pic.jiucool.com/2010/godaddy_score_savings_468x60.jpg" /></a>
<hr />
<p><small>© 久酷 for <a href="http://www.jiucool.com">久酷</a>, 2008. |
<a href="http://www.jiucool.com/hao-hao-zuo-ren-hao-hao-zuo-wang-zhan/" target="_blank">Permalink</a> |
<a href="http://www.jiucool.com/hao-hao-zuo-ren-hao-hao-zuo-wang-zhan/#comments">3 comments</a> |
Twitter:
<a href="http://twitter.com/jiucool" target="_blank">@jiucool</a>
<br/>
Post tags: <a href="http://www.jiucool.com/tag/%e6%ad%a3%e8%a7%84%e7%bd%91%e7%ab%99/" rel="tag">正规网站</a>, <a href="http://www.jiucool.com/tag/%e7%bd%91%e7%ab%99/" rel="tag">网站</a>, <a href="http://www.jiucool.com/tag/web/" rel="tag">网站链接</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.jiucool.com/hao-hao-zuo-ren-hao-hao-zuo-wang-zhan/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

