<?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>xslidian 的博客 &#187; 汉化</title>
	<atom:link href="http://lidian.info/topics/localization/feed/" rel="self" type="application/rss+xml" />
	<link>http://lidian.info</link>
	<description>又一个 WordPress 博客</description>
	<lastBuildDate>Tue, 12 Apr 2011 15:34:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>译：css3 太阳系模拟</title>
		<link>http://lidian.info/2010/06/our-solar-system-in-css3/</link>
		<comments>http://lidian.info/2010/06/our-solar-system-in-css3/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 05:05:33 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=99</guid>
		<description><![CDATA[利用 CSS3 的圆角、变换和动画功能绘制太阳系。效果非常惊人有趣。]]></description>
			<content:encoded><![CDATA[<p><em>原文：</em><a class="vt-p" href="http://neography.com/journal/our-solar-system-in-css3/" target="_blank"><em>CSS3 模拟我们的太阳系</em></a><em> by Alex Girón<br />
日期：2010年5月18日</em></p>
<p><em>利用 CSS3 的圆角、变换和动画功能绘制太阳系。效果非常惊人有趣。</em></p>
<p>我研究了几个月的 CSS3，了解其新功能，并体验了各浏览器的支持程度。几周前我放出了第一个实验，是关于 @font-face 和变换功能的。这次呢，我进行的圆角矩形实验，原以为会有些无聊，结果非常有意思。</p>
<h2>主流浏览器中的太阳系</h2>
<div id="attachment_101" class="wp-caption aligncenter" style="width: 630px"><a class="vt-p" href="http://lidian.info/media/solarsystem/" target="_blank"><img class="size-full wp-image-101" title="solar_system" src="http://lidian.info/wp-content/uploads/2010/06/solar_system.jpg" alt="" width="620" height="625" /></a><p class="wp-caption-text">主流浏览器中的太阳系</p></div>
<p><a class="vt-p" href="http://lidian.info/media/solarsystem/" target="_blank">亲自体验下</a>，我只用了 CSS 和 HTML 就完成了太阳系的简单模拟。</p>
<p>要获得最佳体验请使用 Safari 浏览，chrome 中动画有点卡。</p>
<h2>细节</h2>
<p>轨道和行星都是通过 border-radius 生成的，而动画是通过 –webkit animation 动画属性和变换功能实现的。以下是所用代码的示例：</p>
<h3>圆角边框</h3>
<p><code> </code></p>
<p><code> </code></p>
<p><code></p>
<pre>ul.solarsystem li.sun {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}</pre>
<p></code></p>
<h3>动画 与变换</h3>
<p><code> </code></p>
<p><code> </code></p>
<p><code></p>
<pre>ul.solarsystem li {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:orbit;
}
ul.solarsystem li.earth span {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:moon;
}
ul.solarsystem li.mercury {-webkit-animation-duration:5s;}
ul.solarsystem li.venus {-webkit-animation-duration:8s;}
ul.solarsystem li.earth {-webkit-animation-duration:12s;}
ul.solarsystem li.earth span {-webkit-animation-duration:2s;}
ul.solarsystem li.mars {-webkit-animation-duration:20s;}
ul.solarsystem li.asteroids_meteorids {-webkit-animation-duration:50s;}
ul.solarsystem li.jupiter {-webkit-animation-duration:30s;}
ul.solarsystem li.saturn {-webkit-animation-duration:60s;}
ul.solarsystem li.uranus {-webkit-animation-duration:70s;}
ul.solarsystem li.neptune {-webkit-animation-duration:100s;}
ul.solarsystem li.pluto {-webkit-animation-duration:120s;}

@-webkit-keyframes orbit {
from { -webkit-transform:rotate(0deg) }
to { -webkit-transform:rotate(360deg) } }</pre>
<p></code><br />
动画和变换功能目前只在 –webkit 浏览器中有效，其他主流浏览器——当然 IE 除外——只显示通过 border-radius 渲染的静态版本太阳系。</p>
<h2>Internet Explorer 的平行扁宇宙：</h2>
<div id="attachment_100" class="wp-caption aligncenter" style="width: 630px"><a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/06/solar_system_ie.jpg"><img class="size-full wp-image-100" title="solar_system_ie" src="http://lidian.info/wp-content/uploads/2010/06/solar_system_ie.jpg" alt="" width="620" height="623" /></a><p class="wp-caption-text">IE 中的太阳系</p></div>
<p>嗯，Internet Explorer 眼里我们的宇宙无聊得欠扁。</p>
<p>如您所见，现在几行 CSS 就可以实现令人印象灰常深刻的效果。</p>
<p>哦，我承认……我把冥王星留下来了 <img src='http://lidian.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/06/our-solar-system-in-css3/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Google Buzz ER：WordPress 上的 Google Buzz！</title>
		<link>http://lidian.info/2010/02/google-buzz-er-chs-for-wordpress/</link>
		<comments>http://lidian.info/2010/02/google-buzz-er-chs-for-wordpress/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 11:22:56 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Buzz ER]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[SAE]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[开发]]></category>
		<category><![CDATA[挂件]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=47</guid>
		<description><![CDATA[昨天 Google 宣布了一项新服务，Google Buzz，分享更新、照片、视频，加入感兴趣的话题等等的新方式。今天您可以把 Google Buzz 上的帖子放在 WordPress 站点上了。 Google Buzz Er 是用来显示指定 Google 帐号的公共 Buzz 帖子的 WordPress 插件，由 Lazarevic Ivan 开发，遵循 GPL 协议分发。 您要做的只是设置 Google 帐号用户名，也可以选择要显示的帖数。 点击进入：演示页 原版下载 （以上介绍 via） 简体中文版：google-buzz-er-1.3-chs.zip（已更新至 1.3 版） SAE 版内嵌版演示：xslidian.sinaapp.com SAE 版框架版演示：xslidian.sinaapp.com/buzzer.php?u=xslidian SAE 版源码：buzzer-for-sae-1.3.zip（框架版可用于非 SAE 博客；内嵌版只需在模板中添加样式表并 include；更新至 1.3 版，允许的参数为 u、no、img、w、title 及 ptitle）]]></description>
			<content:encoded><![CDATA[<p>昨天 Google 宣布了一项新服务，<a href="http://www.google.com/buzz" target="_blank">Google Buzz</a>，分享更新、照片、视频，加入感兴趣的话题等等的新方式。今天您可以把 Google Buzz 上的帖子放在 WordPress 站点上了。</p>
<p><a href="http://workshop.rs/2010/02/google-buzz-er-google-buzz-for-wordpress/" target="_blank">Google Buzz Er</a> 是用来显示指定 Google 帐号的公共 Buzz 帖子的 <a href="http://wordpress.org/" target="_blank">WordPress</a> 插件，由 <a href="http://workshop.rs/" target="_blank">Lazarevic Ivan</a> 开发，遵循 GPL 协议分发。<br />
您要做的只是设置 Google 帐号用户名，也可以选择要显示的帖数。</p>
<p>点击进入：<a href="http://workshop.rs/" target="_blank">演示页</a> <a href="http://wordpress.org/extend/plugins/google-buzz-er/" target="_blank">原版下载</a> （以上介绍 <a href="http://workshop.rs/2010/02/google-buzz-er-google-buzz-for-wordpress/" target="_blank">via</a>）</p>
<p>简体中文版：<a href="http://lidian.info/wp-content/uploads/2010/02/google-buzz-er-1.3-chs.zip">google-buzz-er-1.3-chs.zip</a>（<span style="color: #ff0000;">已更新至 1.3 版</span>）</p>
<p>SAE 版内嵌版演示：<a href="http://xslidian.sinaapp.com/">xslidian.sinaapp.com</a><br />
SAE 版框架版演示：<a href="http://xslidian.sinaapp.com/buzzer.php?u=xslidian">xslidian.sinaapp.com/buzzer.php?u=xslidian</a><br />
SAE 版源码：<a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-for-sae-1.3.zip">buzzer-for-sae-1.3.zip</a>（框架版可用于非 SAE 博客；内嵌版只需在模板中添加样式表并 include；<span style="color: #ff0000;">更新至 1.3 版，允许的参数为 u、no、img、w、title 及 ptitle</span>）</p>
<div id="attachment_59" class="wp-caption aligncenter" style="width: 198px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-1-chs.png"><img class="size-full wp-image-59" title="buzzer-screenshot-1-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-1-chs.png" alt="" width="188" height="325" /></a><p class="wp-caption-text">Google Buzz ER 插件使用效果</p></div>
<div id="attachment_60" class="wp-caption aligncenter" style="width: 562px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-2-chs.png"><img class="size-full wp-image-60" title="buzzer-screenshot-2-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-2-chs.png" alt="" width="552" height="393" /></a><p class="wp-caption-text">Google Buzz ER 插件设置页面</p></div>
<div id="attachment_72" class="wp-caption aligncenter" style="width: 306px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-3-chs.png"><img class="size-full wp-image-72" title="buzzer-screenshot-3-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-3-chs.png" alt="" width="296" height="353" /></a><p class="wp-caption-text">边栏小工具设置页面</p></div>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 316px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-4-chs.png"><img class="size-full wp-image-76" title="buzzer-screenshot-4-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-4-chs.png" alt="" width="306" height="356" /></a><p class="wp-caption-text">自定义标题文字以及帖中图像</p></div>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/google-buzz-er-chs-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MKVToolNix 使用手册 简体中文版</title>
		<link>http://lidian.info/2010/02/mkvtoolnix-manual/</link>
		<comments>http://lidian.info/2010/02/mkvtoolnix-manual/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:37:29 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Matroska]]></category>
		<category><![CDATA[MKVToolNix]]></category>
		<category><![CDATA[多媒体]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=39</guid>
		<description><![CDATA[Matroska 意在成为新的标准容器格式。由 Moritz Bunkus 开发的 MkvToolNix 包含了可以处理 Matroska 文件的一些小工具： mkvmerge 可创建 Matroska 文件； mkvextract 可从 Matroska 文件中提取各类数据； mkvpropedit 可直接对 Matroska 文件内部的各类属性（头部字段）进行修改； mkvinfo 可列出此类文件的信息； mmg 是非常好用的 mkvmerge 的 GUI 版本。 它们与 Matroska 的关系就像是 ogmtools 与 OGM 文件的关系一样。 这是刚刚完成翻译的简体中文版使用手册（配 3.2 版本，以后可以在软件的 doc/zh_CN 目录中找到最新版本，此处的压缩包不保持更新），欢迎指正： mkvtoolnix-man-chs.zip（DocBook 格式） mkvtoolnix-man-chs-html.zip（标准 html 格式）]]></description>
			<content:encoded><![CDATA[<p><a class="vt-p" href="http://www.matroska.org/" target="_blank">Matroska</a> 意在成为新的标准容器格式。由 <a class="vt-p" href="http://www.bunkus.org/" target="_blank">Moritz Bunkus</a> 开发的 <a class="vt-p" href="http://www.bunkus.org/videotools/mkvtoolnix/index.html">MkvToolNix</a> 包含了可以处理 Matroska 文件的一些小工具：</p>
<p><a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvmerge.html" target="_blank"><strong>mkvmerge</strong></a> 可创建 Matroska 文件；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvextract.html" target="_blank"><strong> mkvextract</strong></a> 可从 Matroska 文件中提取各类数据；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvpropedit.html" target="_blank"><strong> mkvpropedit</strong></a> 可直接对 Matroska 文件内部的各类属性（头部字段）进行修改；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvinfo.html" target="_blank"><strong> mkvinfo</strong></a> 可列出此类文件的信息；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mmg.html" target="_blank"><strong> mmg</strong></a> 是非常好用的 mkvmerge 的 GUI 版本。</p>
<p>它们与 Matroska 的关系就像是 ogmtools 与 OGM 文件的关系一样。</p>
<p>这是刚刚完成翻译的简体中文版使用手册（配 3.2 版本，以后可以在软件的 doc/zh_CN 目录中找到最新版本，此处的压缩包<strong><span style="color: #ff0000;">不</span></strong><span style="color: #ff0000;">保持更新</span>），欢迎指正：<br />
<a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/02/mkvtoolnix-man-chs.zip">mkvtoolnix-man-chs.zip</a>（<a class="vt-p" href="http://sourceforge.net/projects/docbook/" target="_blank">DocBook</a> 格式）<br />
<a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/02/mkvtoolnix-man-chs-html.zip">mkvtoolnix-man-chs-html.zip</a>（标准 html 格式）</p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/mkvtoolnix-manual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLV Extract v1.6.0 简体中文版</title>
		<link>http://lidian.info/2010/02/flv-extract-v160-chs/</link>
		<comments>http://lidian.info/2010/02/flv-extract-v160-chs/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 16:01:52 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[FLV Extract]]></category>
		<category><![CDATA[多媒体]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=18</guid>
		<description><![CDATA[FLV Extract v1.6.0 简体中文版。包含拖放操作版和命令行版，并按 Any CPU 与 x64 两种架构编译。]]></description>
			<content:encoded><![CDATA[<div id="attachment_19" class="wp-caption aligncenter" style="width: 586px"><a href="http://lidian.info/wp-content/uploads/2010/02/flvextract.jpg"><img class="size-full wp-image-19" title="flvextract-chs-gui" src="http://lidian.info/wp-content/uploads/2010/02/flvextract.jpg" alt="flvextract 简体中文版界面" width="576" height="220" /></a><p class="wp-caption-text">FLVExtract 简体中文版界面</p></div>
<p>FLV Extract 是由 <a title="Moitah 的个人网站" href="http://www.moitah.net/" target="_blank">Moitah</a> 开发的小工具，可以从 flv 文件中提取出原始视频（及其时间码）和音频。有拖放操作版和命令行版两个版本。</p>
<p>翻译版包含拖放操作版和命令行版，并按 Any CPU 与 x64 两种架构编译。授权协议遵从原始程序的 GPL。</p>
<p>程序：<a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs.zip"></a><a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs.zip">FLVExtract160chs.zip</a></p>
<p>源代码：<a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs-src.zip"></a><a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs-src.zip">FLVExtract160chs-src.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/flv-extract-v160-chs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

