<?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>汇集博客</title>
	<atom:link href="http://www.zhblog.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zhblog.net</link>
	<description>专注网站建设，博客优化，转载别人，写出自己</description>
	<lastBuildDate>Mon, 09 Jan 2012 02:16:08 +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>Javascript 面向对象编程</title>
		<link>http://www.zhblog.net/archives/955.html</link>
		<comments>http://www.zhblog.net/archives/955.html#comments</comments>
		<pubDate>Mon, 09 Jan 2012 02:16:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程其他]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=955</guid>
		<description><![CDATA[Javascript是一个类C的语言，他的面向对象的东西相对于C++/Java比较奇怪，但是其的确相当的强大，在 Todd 同学的“对象的消息模型”一文中我们已经可以看到一些端倪了。这两天有个前同事总在问我Javascript面向对象的东西，所以，索性写篇文章让他看去吧，这里这篇文章主要想从一个整体的解度来说明一下Javascript的面向对象的编程。（成文比较仓促，应该有不准确或是有误的地方，请大家批评指正） 初探 我们知道Javascript中的变量定义基本如下： var name = 'Chen Hao';; var email = 'haoel(@)hotmail.com'; var website = 'http://coolshell.cn'; 如果要用对象来写的话，就是下面这个样子： var chenhao = { name :'Chen Hao', email : 'haoel(@)hotmail.com', website : 'http://coolshell.cn' }; 于是，我就可以这样访问： //以成员的方式 chenhao.name; chenhao.email; chenhao.website; //以hash map的方式 chenhao["name"]; chenhao["email"]; chenhao["website"]; 关于函数，我们知道Javascript的函数是这样的： &#160; var doSomething = function(){ alert('Hello World.'); }; 于是，我们可以这么干： var sayHello [...]]]></description>
			<content:encoded><![CDATA[<p>Javascript是一个类C的语言，他的面向对象的东西相对于C++/Java比较奇怪，但是其的确相当的强大，在 <a onclick="pageTracker._trackPageview('/outgoing/www.cnblogs.com/weidagang2046/?referer=http%3A%2F%2Fweibo.com%2Fzzlau%3Fwvr%3D4%26lf%3Dreg%26page%3D3%26pre_page%3D2%26end_id%3D3399859468127472');" href="http://www.cnblogs.com/weidagang2046/" target="_blank">Todd 同学</a>的“<a title="对象的消息模型" href="http://coolshell.cn/articles/5202.html" rel="bookmark" target="_blank">对象的消息模型</a>”一文中我们已经可以看到一些端倪了。这两天有个前同事总在问我Javascript面向对象的东西，所以，索性写篇文章让他看去吧，这里这篇文章主要想从一个整体的解度来说明一下Javascript的面向对象的编程。（<strong>成文比较仓促，应该有不准确或是有误的地方，请大家批评指正</strong>）</p>
<h4>初探</h4>
<p>我们知道Javascript中的变量定义基本如下：</p>
<pre class="brush: jscript; title: ; notranslate" title="">var name = 'Chen Hao';;
var email = 'haoel(@)hotmail.com';
var website = 'http://coolshell.cn';</pre>
<p>如果要用对象来写的话，就是下面这个样子：</p>
<pre class="brush: jscript; title: ; notranslate" title="">var chenhao = {
    name :'Chen Hao',
    email : 'haoel(@)hotmail.com',
    website : 'http://coolshell.cn'
};</pre>
<p>于是，我就可以这样访问：</p>
<pre class="brush: jscript; title: ; notranslate" title="">//以成员的方式
chenhao.name;
chenhao.email;
chenhao.website;

//以hash map的方式
chenhao["name"];
chenhao["email"];
chenhao["website"];</pre>
<p>关于函数，我们知道Javascript的函数是这样的：</p>
<p>&nbsp;</p>
<pre class="brush: jscript; title: ; notranslate" title="">var doSomething = function(){
   alert('Hello World.');
};</pre>
<p>于是，我们可以这么干：</p>
<pre class="brush: jscript; title: ; notranslate" title="">var sayHello = function(){
   var hello = "Hello, I'm "+ this.name
                + ", my email is: " + this.email
                + ", my website is: " + this.website;
   alert(hello);
};

//直接赋值，这里很像C/C++的函数指针
chenhao.Hello = sayHello;

chenhao.Hello();</pre>
<p>相信这些东西都比较简单，大家都明白了。 可以看到javascript对象函数是直接声明，直接赋值，直接就用了。runtime的动态语言。<span id="more-955"></span></p>
<p>还有一种比如规范的写法是：</p>
<pre class="brush: jscript; title: ; notranslate" title="">//我们可以看到， 其用function来做class。
var Person = function(name, email, website){
    this.name = name;
    this.email = email;
    this.website = website;

    this.sayHello = function(){
        var hello = "Hello, I'm "+ this.name  + ", \n" +
                    "my email is: " + this.email + ", \n" +
                    "my website is: " + this.website;
        alert(hello);
    };
};

var chenhao = new Person("Chen Hao", "haoel@hotmail.com",
                                     "http://coolshell.cn");
chenhao.sayHello();</pre>
<p>顺便说一下，要删除对象的属性，很简单：</p>
<pre class="brush: jscript; title: ; notranslate" title="">delete chenhao['email']</pre>
<p>上面的这些例子，我们可以看到这样几点：</p>
<p>Javascript的数据和成员封装很简单。</p>
<p><a href="http://www.zhblog.net/archives/tag/javascript" class="st_tag internal_tag" rel="tag" title="标签 javascript 下的日志">Javascript</a> function中的this指针很关键，如果没有的话，那就是局部变量或局部函数。</p>
<p>Javascript对象成员函数可以在使用时临时声明，并把一个全局函数直接赋过去就好了。</p>
<p>Javascript的成员函数可以在实例上进行修改，也就是说不同的实例的同一个函数名的行为和实现不一样。</p>
<h4>属性配置 – Object.defineProperty</h4>
<p>先看下面的代码：</p>
<pre class="brush: jscript; title: ; notranslate" title="">//创建对象
var chenhao = Object.create(null);

//设置一个属性
 Object.defineProperty( chenhao,
                'name', { value:  'Chen Hao',
                          writable:     true,
                          configurable: true,
                          enumerable:   true });

//设置多个属性
Object.defineProperties( chenhao,
    {
        'email'  : { value:  'haoel@hotmail.com',
                     writable:     true,
                     configurable: true,
                     enumerable:   true },
        'website': { value: 'http://coolshell.cn',
                     writable:     true,
                     configurable: true,
                     enumerable:   true }
    }
);</pre>
<p>下面就说说这些属性配置是什么意思。</p>
<ul>
<li>writable：这个属性的值是否可以改。</li>
<li>configurable：这个属性的配置是否可以改。</li>
<li>enumerable：这个属性是否能在for…in循环中遍历出来或在Object.keys中列举出来。</li>
<li>value：属性值。</li>
<li>get()/set(_value)：get和set访问器。</li>
</ul>
<h4>Get/Set 选择器</h4>
<p>关于get/set访问器，它的意思就是用get/set来取代value（其不能和value一起使用），示例如下：</p>
<pre class="brush: jscript; title: ; notranslate" title="">var  age = 0;
Object.defineProperty( chenhao,
            'age', {
                      get: function() {return age+1;},
                      set: function(value) {age = value;}
                      enumerable : true,
                      configurable : true
                    }
);
chenhao.age = 100; //调用set
alert(chenhao.age); //调用get 输出101;</pre>
<p>我们再看一个更为实用的例子——利用已有的属性(age)通过get和set构造新的属性(birth_year)：</p>
<pre class="brush: jscript; title: ; notranslate" title="">Object.defineProperty( chenhao,
            'birth_year',
            {
                get: function() {
                    var d = new Date();
                    var y = d.getFullYear();
                    return ( y - this.age );
                },
                set: function(year) {
                    var d = new Date();
                    var y = d.getFullYear();
                    this.age = y - year;
                }
            }
);

alert(chenhao.birth_year);
chenhao.birth_year = 2000;
alert(chenhao.age);</pre>
<p>这样做好像有点麻烦，你说，我为什么不写成下面这个样子：</p>
<pre class="brush: jscript; title: ; notranslate" title="">var chenhao = {
    name: "Chen Hao",
    email: "haoel@hotmail.com",
    website: "http://coolshell.cn",
    age: 100,
    get birth_year() {
        var d = new Date();
        var y = d.getFullYear();
        return ( y - this.age );
    },
    set birth_year(year) {
        var d = new Date();
        var y = d.getFullYear();
        this.age = y - year;
    }

};
alert(chenhao.birth_year);
chenhao.birth_year = 2000;
alert(chenhao.age);</pre>
<p>是的，你的确可以这样的，不过通过defineProperty()你可以干这些事：</p>
<p>1）设置如 writable，configurable，enumerable 等这类的属性配置。</p>
<p>2）动态地为一个对象加属性？比如：一些HTML的DOM对像。</p>
<h4>查看对象属性配置</h4>
<p>如果查看并管理对象的这些配置，下面有个程序可以输入这些东西：</p>
<pre class="brush: jscript; title: ; notranslate" title="">//列出对象的属性.
function listProperties(obj)
{
    var newLine = "&lt;br /&gt;";
    var names = Object.getOwnPropertyNames(obj);
    for (var i = 0; i &lt; names.length; i++) {
        var prop = names[i];
        document.write(prop + newLine);

        // 列出对象的属性配置（descriptor）动用getOwnPropertyDescriptor函数。
        var descriptor = Object.getOwnPropertyDescriptor(obj, prop);
        for (var attr in descriptor) {
            document.write("..." + attr + ': ' + descriptor[attr]);
            document.write(newLine);
        }
        document.write(newLine);
    }
}

listProperties(chenhao);</pre>
<h4>call，apply， bind 和 this</h4>
<p>关于Javascript的this指针，和C++/Java很类似。 我们来看个示例：（这个示例很简单了，我就不多说了）</p>
<pre class="brush: jscript; title: ; notranslate" title="">function print(text){
    document.write(this.value + ' - ' + text+ '&lt;br&gt;');
}

var a = {value: 10, print : print};
var b = {value: 20, print : print};

print('hello');// this =&gt; global, output "undefined - hello"

a.print('a');// this =&gt; a, output "10 - a"
b.print('b'); // this =&gt; b, output "20 - b"

a['print']('a'); // this =&gt; a, output "10 - a"</pre>
<p>我们再来看看call 和 apply，这两个函数的差别就是参数的样子不一样，另一个就是性能不一样，apply的性能要差很多。（关于性能，可到 <a onclick="pageTracker._trackPageview('/outgoing/jsperf.com/?referer=http%3A%2F%2Fweibo.com%2Fzzlau%3Fwvr%3D4%26lf%3Dreg%26page%3D3%26pre_page%3D2%26end_id%3D3399859468127472');" href="http://jsperf.com/" target="_blank">JSPerf</a> 上去跑跑看看）</p>
<pre class="brush: jscript; title: ; notranslate" title="">print.call(a, 'a'); // this =&gt; a, output "10 - a"
print.call(b, 'b'); // this =&gt; b, output "20 - b"

print.apply(a, ['a']); // this =&gt; a, output "10 - a"
print.apply(b, ['b']); // this =&gt; b, output "20 - b"</pre>
<p>但是在bind后，this指针，可能会有不一样，但是因为Javascript是动态的。如下面的示例</p>
<pre class="brush: jscript; title: ; notranslate" title="">var p = print.bind(a);
p('a');             // this =&gt; a, output "10 - a"
p.call(b, 'b');     // this =&gt; a, output "10 - a"
p.apply(b, ['b']);  // this =&gt; a, output "10 - a"</pre>
<h4>继承 和 重载</h4>
<p>通过上面的那些示例，我们可以通过Object.create()来实际继承，请看下面的代码，Student继承于Object。</p>
<pre class="brush: jscript; title: ; notranslate" title="">var Person = Object.create(null);

Object.defineProperties
(
    Person,
    {
        'name'  : {  value: 'Chen Hao'},
        'email'  : { value : 'haoel@hotmail.com'},
        'website': { value: 'http://coolshell.cn'}
    }
);

Person.sayHello = function (person) {
    var hello = "&lt;p&gt;Hello, I am "+ this.name  + ", &lt;br&gt;" +
                "my email is: " + this.email + ", &lt;br&gt;" +
                "my website is: " + this.website;
    document.write(hello + "&lt;br&gt;");
}

var Student = Object.create(Person);
Student.no = "1234567"; //学号
Student.dept = "Computer Science"; //系

//检查Person的属性
document.write(Student.name + ' ' + Student.email + ' ' + Student.website +'&lt;br&gt;');

//检查Person的方法
Student.sayHello();

//重载SayHello方法
Student.sayHello = function (person) {
    var hello = "&lt;p&gt;Hello, I am "+ this.name  + ", &lt;br&gt;" +
                "my email is: " + this.email + ", &lt;br&gt;" +
                "my website is: " + this.website + ", &lt;br&gt;" +
                "my student no is: " + this. no + ", &lt;br&gt;" +
                "my departent is: " + this. dept;
    document.write(hello + '&lt;br&gt;');
}
//再次调用
Student.sayHello();

//查看Student的属性（只有 no 、 dept 和 重载了的sayHello）
document.write('&lt;p&gt;' + Object.keys(Student) + '&lt;br&gt;');</pre>
<p>通用上面这个示例，我们可以看到，Person里的属性并没有被真正复制到了Student中来，但是我们可以去存取。这是因为Javascript用委托实现了这一机制。其实，这就是Prototype，Person是Student的Prototype。</p>
<p>当我们的代码需要一个属性的时候，Javascript的引擎会先看当前的这个对象中是否有这个属性，如果没有的话，就会查找他的Prototype对象是否有这个属性，一直继续下去，直到找到或是直到没有Prototype对象。</p>
<p>为了证明这个事，我们可以使用Object.getPrototypeOf()来检验一下：</p>
<pre class="brush: jscript; title: ; notranslate" title="">Student.name = 'aaa';

//输出 aaa
document.write('&lt;p&gt;' + Student.name + '&lt;/p&gt;');

//输出 Chen Hao
document.write('&lt;p&gt;' +Object.getPrototypeOf(Student).name + '&lt;/p&gt;');</pre>
<p>于是，你还可以在子对象的函数里调用父对象的函数，就好像C++里的 Base::func() 一样。于是，我们重载hello的方法就可以使用父类的代码了，如下所示：</p>
<pre class="brush: jscript; title: ; notranslate" title="">//新版的重载SayHello方法
Student.sayHello = function (person) {
    Object.getPrototypeOf(this).sayHello.call(this);
    var hello = "my student no is: " + this. no + ", &lt;br&gt;" +
                "my departent is: " + this. dept;
    document.write(hello + '&lt;br&gt;');
}</pre>
<p>这个很强大吧。</p>
<h4>组合</h4>
<p>上面的那个东西还不能满足我们的要求，我们可能希望这些对象能真正的组合起来。为什么要组合？因为我们都知道是这是OO设计的最重要的东西。不过，这对于Javascript来并没有支持得特别好，不好我们依然可以搞定个事。</p>
<p>首先，我们需要定义一个Composition的函数：（target是作用于是对象，source是源对象），下面这个代码还是很简单的，就是把source里的属性一个一个拿出来然后定义到target中。</p>
<pre class="brush: jscript; title: ; notranslate" title="">function Composition(target, source)
{
    var desc  = Object.getOwnPropertyDescriptor;
    var prop  = Object.getOwnPropertyNames;
    var def_prop = Object.defineProperty;

    prop(source).forEach(
        function(key) {
            def_prop(target, key, desc(source, key))
        }
    )
    return target;
}</pre>
<p>有了这个函数以后，我们就可以这来玩了：</p>
<pre class="brush: jscript; title: ; notranslate" title="">//艺术家
var Artist = Object.create(null);
Artist.sing = function() {
    return this.name + ' starts singing...';
}
Artist.paint = function() {
    return this.name + ' starts painting...';
}

//运动员
var Sporter = Object.create(null);
Sporter.run = function() {
    return this.name + ' starts running...';
}
Sporter.swim = function() {
    return this.name + ' starts swimming...';
}

Composition(Person, Artist);
document.write(Person.sing() + '&lt;br&gt;');
document.write(Person.paint() + '&lt;br&gt;');

Composition(Person, Sporter);
document.write(Person.run() + '&lt;br&gt;');
document.write(Person.swim() + '&lt;br&gt;');

//看看 Person中有什么？（输出：sayHello,sing,paint,swim,run）
document.write('&lt;p&gt;' + Object.keys(Person) + '&lt;br&gt;');</pre>
<h4>Prototype 和 继承</h4>
<p>我们先来说说Prototype。我们先看下面的例程，这个例程不需要解释吧，很像C语言里的函数指针，在C语言里这样的东西见得多了。</p>
<pre class="brush: jscript; title: ; notranslate" title="">var plus = function(x,y){
    document.write( x + ' + ' + y + ' = ' + (x+y) + '&lt;br&gt;');
    return x + y;
};

var minus = function(x,y){
    document.write(x + ' - ' + y + ' = ' + (x-y) + '&lt;br&gt;');
    return x - y;
};

var operations = {
    '+': plus,
    '-': minus
};

var calculate = function(x, y, operation){
    return operations[operation](x, y);
};

calculate(12, 4, '+');
calculate(24, 3, '-');</pre>
<p>那么，我们能不能把这些东西封装起来呢，我们需要使用prototype。看下面的示例：</p>
<pre class="brush: jscript; title: ; notranslate" title="">var Cal = function(x, y){
    this.x = x;
    this.y = y;
}

Cal.prototype.operations = {
    '+': function(x, y) { return x+y;},
    '-': function(x, y) { return x-y;}
};

Cal.prototype.calculate = function(operation){
    return this.operations[operation](this.x, this.y);
};

var c = new Cal(4, 5);

Cal.calculate('+');
Cal.calculate('-');</pre>
<p>这就是prototype的用法，prototype 是javascript这个语言中最重要的内容。网上有太多的文章介始这个东西了。说白了，prototype就是对一对象进行扩展，其特点在于通过“复制”一个已经存在的实例来返回新的实例,而不是新建实例。被复制的实例就是我们所称的“原型”，这个原型是可定制的（当然，这里没有真正的复制，实际只是委托）。上面的这个例子中，我们扩展了实例Cal，让其有了一个operations的属性和一个calculate的方法。</p>
<p>这样，我们可以通过这一特性来实现继承。还记得我们最最前面的那个Person吧， 下面的示例是创建一个Student来继承Person。</p>
<pre class="brush: jscript; title: ; notranslate" title="">function Person(name, email, website){
    this.name = name;
    this.email = email;
    this.website = website;
};

Person.prototype.sayHello = function(){
    var hello = "Hello, I am "+ this.name  + ", &lt;br&gt;" +
                "my email is: " + this.email + ", &lt;br&gt;" +
                "my website is: " + this.website;
    return hello;
};

function Student(name, email, website, no, dept){
    var proto = Object.getPrototypeOf;
    proto(Student.prototype).constructor.call(this, name, email, website);
    this.no = no;
    this.dept = dept;
}

// 继承prototype
Student.prototype = Object.create(Person.prototype);

//重置构造函数
Student.prototype.constructor = Student;

//重载sayHello()
Student.prototype.sayHello = function(){
    var proto = Object.getPrototypeOf;
    var hello = proto(Student.prototype).sayHello.call(this) + '&lt;br&gt;';
    hello += "my student no is: " + this. no + ", &lt;br&gt;" +
             "my departent is: " + this. dept;
    return hello;
};

var me = new Student(
    "Chen Hao",
    "haoel@hotmail.com",
    "http://coolshell.cn",
    "12345678",
    "Computer Science"
);
document.write(me.sayHello());</pre>
<h4>兼容性</h4>
<p>上面的这些代码并不一定能在所有的浏览器下都能运行，因为上面这些代码遵循 ECMAScript 5 的规范，关于ECMAScript 5 的浏览器兼容列表，你可以看这里“<a onclick="pageTracker._trackPageview('/outgoing/kangax.github.com/es5-compat-table/?referer=http%3A%2F%2Fweibo.com%2Fzzlau%3Fwvr%3D4%26lf%3Dreg%26page%3D3%26pre_page%3D2%26end_id%3D3399859468127472');" href="http://kangax.github.com/es5-compat-table/" target="_blank">ES5浏览器兼容表</a>”。</p>
<p>本文中的所有代码都在Chrome最新版中测试过了。</p>
<p>下面是一些函数，可以用在不兼容ES5的浏览器中：</p>
<h5>Object.create()函数</h5>
<pre class="brush: jscript; title: ; notranslate" title="">function clone(proto) {
    function Dummy() { }

    Dummy.prototype             = proto;
    Dummy.prototype.constructor = Dummy;

    return new Dummy(); //等价于Object.create(Person);
}

var me = clone(Person);</pre>
<h5>defineProperty()函数</h5>
<pre class="brush: jscript; title: ; notranslate" title="">function defineProperty(target, key, descriptor) {
    if (descriptor.value){
        target[key] = descriptor.value;
    }else {
        descriptor.get &amp;&amp; target.__defineGetter__(key, descriptor.get);
        descriptor.set &amp;&amp; target.__defineSetter__(key, descriptor.set);
    }

    return target
}</pre>
<h5>keys()函数</h5>
<pre class="brush: jscript; title: ; notranslate" title="">function keys(object) { var result, key
    result = [];
    for (key in object){
        if (object.hasOwnProperty(key))  result.push(key)
    }

    return result;
}</pre>
<h5>Object.getPrototypeOf() 函数</h5>
<pre class="brush: jscript; title: ; notranslate" title="">function proto(object) {
    return object?            object.__proto__
         : /* not object? */  null
}</pre>
<h4>参考</h4>
<ul>
<li>W3CSchool</li>
<li>MDN (Mozilla Developer Network)</li>
<li>MSDN (Microsoft Software Development Network)</li>
</ul>
<p><a href="http://coolshell.cn/articles/6441.html">http://coolshell.cn/articles/6441.html</a></p>
<p><span style="color: #cc0000;"><strong><br />
</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/955.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>雨林木风官方所有系统下载连接</title>
		<link>http://www.zhblog.net/archives/952.html</link>
		<comments>http://www.zhblog.net/archives/952.html#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:53:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[电脑网络]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=952</guid>
		<description><![CDATA[雨林木风 Ghost XP SP3装机版 YN9.9 ghost XP3 YN9.9 CN更新版下载： QQ旋风离线1：qqdl://RnRwOi8vMTE2OjExNkA2MS4xNDUuNjIuOTgv0+rB1sS+t+cgR2hvc3QgWFAgU1AzINewu/qw5iBZTjkuOV9CWV9DTi5pc28= QQ旋风离线2：qqdl://RnRwOi8vMTE1OjExNUA2MS4xNDUuNjIuMTE1L9PqwdbEvrfnIEdob3N0IFhQIFNQMyDXsLv6sOYgWU45LjlfQllfQ04uaXNv 迅雷下载1：thunder://QUFGdHA6Ly8xMTY6MTE2QDYxLjE0NS42Mi45OC/T6sHWxL635yBHaG9zdCBYUCBTUDMg17C7+rDmIFlOOS45X0JZX0NOLmlzb1pa 迅雷下载2：thunder://QUFGdHA6Ly8xMTU6MTE1QDYxLjE0NS42Mi4xMTUv0+rB1sS+t+cgR2hvc3QgWFAgU1AzINewu/qw5iBZTjkuOV9CWV9DTi5pc29aWg== 原版：thunder://QUFGdHA6Ly8xMTU6MTE1QDYxLjE0NS42Mi4xMTUv0+rB1sS+t+cgR2hvc3QgWFAgU1AzINewu/qw5iBZTjkuOS5pc29aWg== YlmF_XP3_YN9.9.iso (694.7 MB) 雨林木风 WinXP SP3安装版 YS8.0 YlmF_XPSP3_YS8.0F.iso (678.57 MB) 雨林木风 Ghost XP SP3纯净版 Y6.0 YlmF_GhostXP_SP3_Y6.0.iso (693.81 MB) Windows Vista ULTIMATE SP1精简版V2.1 YlmF_Vista_Lite_2.1.iso (2.66 GB) —————————————————————————————————————————————————————————————- 雨林木风 Windows Vista ULTIMATE With SP1版本：1.2(自己传的) 迅雷地址：thunder://QUFodHRwOi8vNjAuMTkxLjYwLjEwOC9ZbG1GX1Zpc3RhX0xpdGVfMS4yL1lsbUZfVmlzdGFfTGl0ZV8xLjIuaXNvWlo= 旋风离线地址：qqdl://aHR0cDovLzYwLjE5MS42MC4xMDgvWWxtRl9WaXN0YV9MaXRlXzEuMi9ZbG1GX1Zpc3RhX0xpdGVfMS4yLmlzbw== 网盘地址2：http://www.namipan.com/d/Vista_L … a9fc9c0c23000202e55 &#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>雨林木风 Ghost XP SP3装机版 YN9.9</p>
<p>ghost XP3 YN9.9 CN更新版下载：</p>
<p>QQ旋风离线1：qqdl://RnRwOi8vMTE2OjExNkA2MS4xNDUuNjIuOTgv0+rB1sS+t+cgR2hvc3QgWFAgU1AzINewu/qw5iBZTjkuOV9CWV9DTi5pc28=</p>
<p>QQ旋风离线2：qqdl://RnRwOi8vMTE1OjExNUA2MS4xNDUuNjIuMTE1L9PqwdbEvrfnIEdob3N0IFhQIFNQMyDXsLv6sOYgWU45LjlfQllfQ04uaXNv</p>
<p>迅雷下载1：thunder://QUFGdHA6Ly8xMTY6MTE2QDYxLjE0NS42Mi45OC/T6sHWxL635yBHaG9zdCBYUCBTUDMg17C7+rDmIFlOOS45X0JZX0NOLmlzb1pa</p>
<p>迅雷下载2：thunder://QUFGdHA6Ly8xMTU6MTE1QDYxLjE0NS42Mi4xMTUv0+rB1sS+t+cgR2hvc3QgWFAgU1AzINewu/qw5iBZTjkuOV9CWV9DTi5pc29aWg==</p>
<p>原版：thunder://QUFGdHA6Ly8xMTU6MTE1QDYxLjE0NS42Mi4xMTUv0+rB1sS+t+cgR2hvc3QgWFAgU1AzINewu/qw5iBZTjkuOS5pc29aWg==</p>
<p><a href="ed2k://|file|YlmF_XP3_YN9.9.iso|728444928|b2893ec7fa4159a21a7a7c062f8084ed|h=DHAPNSGIK44GRCXIO4J5TLHS46RSUSPV|/" target="_blank">YlmF_XP3_YN9.9.iso (694.7 MB)</a></p>
<p>雨林木风 WinXP SP3安装版 YS8.0</p>
<p><a href="ed2k://|file|YlmF_XPSP3_YS8.0F.iso|711530496|39159d2b04ad6547f0b048b74a6d3c6b|h=NRTL2GJ5CMFHL4U5S36B5ME6WDC75U6X|/" target="_blank">YlmF_XPSP3_YS8.0F.iso (678.57 MB)</a></p>
<p>雨林木风 Ghost XP SP3纯净版 Y6.0</p>
<p><a href="ed2k://|file|YlmF_GhostXP_SP3_Y6.0.iso|727508992|24630fe74ce407434585198b0c591bbb|h=UQ4N2DSZ7CCKCNYU2L4MDKGRWBPBAGLR|/" target="_blank">YlmF_GhostXP_SP3_Y6.0.iso (693.81 MB)</a></p>
<p>Windows Vista ULTIMATE SP1精简版V2.1</p>
<p><a href="ed2k://|file|YlmF_Vista_Lite_2.1.iso|2852435968|4c10b662cd8e7d8be8c0224d72ed2fed|h=TJLKT4AOY2MCFMCE57RKPZWZRUXEHPJO|/" target="_blank">YlmF_Vista_Lite_2.1.iso (2.66 GB)<span id="more-952"></span></a></p>
<p>—————————————————————————————————————————————————————————————-</p>
<p>雨林木风 Windows Vista ULTIMATE With SP1版本：1.2(自己传的)</p>
<p>迅雷地址：thunder://QUFodHRwOi8vNjAuMTkxLjYwLjEwOC9ZbG1GX1Zpc3RhX0xpdGVfMS4yL1lsbUZfVmlzdGFfTGl0ZV8xLjIuaXNvWlo=</p>
<p>旋风离线地址：qqdl://aHR0cDovLzYwLjE5MS42MC4xMDgvWWxtRl9WaXN0YV9MaXRlXzEuMi9ZbG1GX1Zpc3RhX0xpdGVfMS4yLmlzbw==</p>
<p>网盘地址2：<a href="http://www.namipan.com/d/Vista_L" target="_blank">http://www.namipan.com/d/Vista_L … a9fc9c0c23000202e55</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>以下地址 下载了的不要找我 <strong>P.S</strong><strong>，下载地址如果迅雷下载失败，可以选择解码后，加密成</strong><strong>QQ</strong><strong>旋风地址，用</strong><strong>QQ</strong><strong>旋风的离线下载！</strong></p>
<p>雨林木风 Windows XP SP3 精简版 Y1.1</p>
<p><a href="ed2k://|file|IK-%5BYlmF_XPSP3M_Y1.1%5D.iso|230203392|6f9b3a8723042ae55b4822d1c46539f2|h=gp7o2wzrcwebv46b673g3pif6zkk3qjp|/" target="_blank">IK-[YlmF_XPSP3M_Y1.1].iso (219.54 MB)</a></p>
<p>雨林木风WINDOWS2003 SP2 安装版Y1.0</p>
<p><a href="http://221.5.72.163:81/YlmF_2K3SP2_Y1.0/YlmF_2K3SP2_Y1.0.iso" target="_blank">http://221.5.72.163:81/YlmF_2K3SP2_Y1.0/YlmF_2K3SP2_Y1.0.iso</a></p>
<p>旋风离线通道：qqdl://aHR0cDovLzIyMS41LjcyLjE2Mzo4MS9ZbG1GXzJLM1NQMl9ZMS4wL1lsbUZfMkszU1AyX1kxLjAuaXNv</p>
<p>SP2 联想OEM专版</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QyLnlsbWYubmV0L1dpblhQX0xlbm92b19Qcm8vV2luWFBfTGVub3ZvX1Byby5pc29aWg==</p>
<p>雨林木风 常用软件工具盘Y6.0[修正版]</p>
<p>tnder://QUFmdHA6Ly9mdHA6ZnRwQGR2ZDIuNjY3Ni5jb20vWWxtRl9Tb0Z0X1k2L1lsbUZfU29GdF9ZNi5pc29aWg==</p>
<p>雨林木风 PE 工具箱 Y1.1（多功能系统维护工具箱)『10.17 更新』</p>
<p>thunder://QUFodHRwOi8vZ3hjcmMub25saW5lZG93bi5uZXQvZG93bi9ZbG1GX1BIX1Rvb2xzX1kxLjEuZXhlWlo=</p>
<p>《雨林木风GHOSTXP 2008新春版》装机、维护人员修改版</p>
<p>thunder://QUFodHRwOi8vY2FjaGVmaWxlMTMuZnMyeW91LmNvbS96aC1jbi9kb3dubG9hZC82YzliNTE2YTJlOGVhMTkwODc1N2I3ZDU0ODllMjYyOC9ZbG1GX1hQX1NQMl8yMDA4vLzK9dDeuMSw5i5pc29aWg==</p>
<p>雨林木风 Ghost XP SP2 纯净版 Y3.5 NTFS</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QxLnlsbWYubmV0L2dob3N0X2ZoMmQ0M3M2NDZpSEkvWWxtRl9HaG9zdFhQX1kzLjUvWWxtRl9HaG9zdFhQX1kzLjUuaXNvWlo=</p>
<p>雨林木风 Ghost XP SP3 纯净版 Y1.0 NTFS</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QxLnlsbWYubmV0L2dob3N0X2ZoMmQ0M3M2NDZpSEkvWWxtRl9HaG9zdFhQX1NQM19ZMS4wL1lsbUZfR2hvc3RYUF9TUDNfWTEuMC5pc29aWg==</p>
<p>雨林木风 庆中秋 迎国庆 装机常用软件工具盘Y5.0</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQveWxtZl9zb2Z0L1lsbUZfU29GVF9ZNS4wL1lsbUZfU29GVF9ZNS4wLmlzb1pa</p>
<p>CD版雨林木风 庆中秋 迎国庆 软件大礼包</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQveWxtZl85LjI0L1lsbUZfU29mdF9DRC9ZbG1GX1NvZnRfQ0QuaXNvWlo=</p>
<p>DVD版雨林木风 庆中秋 迎国庆 软件大礼包</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQveWxtZl85LjI0L1lsbUZfU29mdF9EVkQvWUxtRl9Tb2Z0X0RWRC5pc29aWg==</p>
<p>雨林木风 2008 系统DVD合集</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QxLnlsbWYubmV0L2dob3N0X2ZoMmQ0M3M2NDZpSEkvWWxtRl9EVkRfMjAwOC9ZbG1GX0RWRF8yMDA4LklTT1pa</p>
<p>雨林木风 Ghost XP SP3 体验版</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QxLnlsbWYubmV0L2dob3N0X2ZoMmQ0M3M2NDZpSEkvWWxtRl9HaG9zdFhQX1NQMy9ZbG1GX0dob3N0WFBfU1AzLmlzb1pa</p>
<p>雨林木风 Ghost XP SP2 2008 新春版 NTFS</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQvWWxtRl9YUF9TUDJfMjAwOC9ZbG1GX1hQX1NQMl8yMDA4Lmlzb1pa</p>
<p>雨林木风 WinXP SP2 安装版 Y3.0</p>
<p>thunder://QUFodHRwOi8vZ2hvc3Q2LnlsbWYubmV0L1lsbUZfWFBTUDJfWTMuMC9ZbG1GX1hQU1AyX1kzLjAuaXNvWlo=</p>
<p>雨林木风 Ghost XP SP2 纯净版 Y3.2</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QyLnlsbWYubmV0L1lsbUZfR2hvc3RYUF9ZMy4yL1lsbUZfR2hvc3RYUF9ZMy4yLmlzb1pa</p>
<p>雨林木风 WinXP SP2 安装版 Y2.0</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QyLnlsbWYubmV0L1lsbUZfWFBTUDJfWTIuMC9ZbG1GX1hQU1AyX1kyLjAuaXNvWlo=</p>
<p>雨林木风 Ghost WinXP 2008 贺岁版 NTFS</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QxLnlsbWYubmV0L2dob3N0X2ZoMmQ0M3M2NDZpSEkvWWxtRl9XaW5YUF8yMDA4L1lsbUZfV2luWFBfMjAwOC5pc29aWg==</p>
<p>雨林木风Ghost Winxp2 装机版YF6.0[修正版]</p>
<p>thunder://QUFodHRwOi8vY2FjaGVmaWxlNC5mczJ5b3UuY29tL3poLWNuL2Rvd25sb2FkLzQwYzc0N2FkMTZiZTE1YTcwYWEyMWU2NWY1YjI1MWZjL3d3dy53emx1LmNvbSBZbG1GIFlGNi4w17C7+rDm0N7V/bDmLmlzb1pa</p>
<p>雨林木风 Ghost XP SP2 精简版 Y2.0 NTFS</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QyLnlsbWYubmV0L1lsbUZfTWluaVhQX1kyLjAvWWxtRl9NaW5pWFBfWTIuMC5pc29aWg==</p>
<p>雨林木风 Ghost XP SP2 纯净版 Y3.0 NTFS</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QyLnlsbWYubmV0L1lsbUZfR2hvc3RYUF9ZMy4wL1lsbUZfR2hvc3RYUF9ZMy4wLmlzb1pa</p>
<p>雨林木风 Ghost XP SP2 纯净版 Y2.5 修正版</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQvZ2hvc3RfMTAxNWRsbWpqL1lsbUZfR2hvc3RYUF9ZMi41X05URlMvWWxtRl9HaG9zdFhQX1kyLjUuaXNvWlo=</p>
<p>雨林木风Ghost Winxp SP2英文版YE2.0</p>
<p>thunder://QUFodHRwOi8vY2FjaGVmaWxlNC5mczJ5b3UuY29tL3poLWNuL2Rvd25sb2FkLzdhNTQwNWViZDU2ZmM2MjM4YTBiZjYzNTQ3MTEyN2M0L3d3dy53emx1LmNvbSBZbG1GX0dob3N0X1hQMl9ZRTIuMC5pc29aWg==</p>
<p>雨林木风GHOST WINXP SP2 繁体版</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQvZ2hvc3RfZmgyZDQzczY0NmlISS9HaG9zdF9XaW54cF9TUDJfSEsvR2hvc3RfV2lueHBfU1AyX0hLLmlzb1pa</p>
<p>雨林木风 Ghost XP SP2 装机版 YF5.5</p>
<p>thunder://QUFodHRwOi8vZ2hvc3QueWxtZi5uZXQvZ2hvc3RfbmV3L1lsbUZfWUY1LjUvWWxtRl9ZRjUuNS5pc29aWg==</p>
<p>雨林木风Ghost Winxp2 网吧版YN1.0[正式版]</p>
<p>thunder://QUFmdHA6Ly95bG1mOnlsbWZANjAuMjE2LjcyLjExMC9ZbG1GX1hQMs34sMmw5llOMS4wLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 装机版YN3.5正式版</p>
<p>thunder://QUFodHRwOi8vd3d3LnRsY214LmNvbS9Tb2Z0L1VwbG9hZFNvZnQvMjAwNzA2L1lMTUZfWFAy17C7+rDmWTMuNS5pc29aWg==</p>
<p>雨林木风Ghost Winxp2 纯净版YN1.93(二周年纪念版)</p>
<p>thunder://QUFodHRwOi8vZG93bi5wY2hvYi5jb20vMS9ZbG1GX1hQMl9ZTjEuOTMuaXNvLnJhclpa</p>
<p>雨林木风Ghost WinXP2 精简版 Y1.5</p>
<p>thunder://QUFodHRwOi8vd3d3NS5hbmt0eS5jb20vMjAwN8TqNNTCL1lsbUZfTWluaVhQX1kxLjUuaXNvLnJhclpa</p>
<p>雨林木风Ghost Winxp2 装机版YN5.0</p>
<p>thunder://QUFodHRwOi8vZy55bG1mLm5ldC95bG1mX2lzb19naG9zdGRsc3h4L1lsbUZfWFAyX1lONS4wL1lsbUZfeHAyX1lONS4wLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 纯净版YN2.0</p>
<p>thunder://QUFodHRwOi8vZy55bG1mLm5ldC95bG1maXNvMi9ZbG1GIFlOMi4wL1lsbUZfV2luUDJfWU4yLjAuaXNvWlo=</p>
<p>雨林木风Ghost Winxp2 装机版Y3.5[测试版]</p>
<p>thunder://QUFodHRwOi8vc29mdC5oYWluaW5nLmluZm8vdXBsb2Fkc29mdC9zeXN0ZW0vWUxNRl9YUDLXsLv6sOZZMy41LnJhclpa</p>
<p>雨林木风Ghost Winxp2 纯净版YN1.92</p>
<p>thunder://QUFmdHA6Ly9VUDp1cEAyMjIuMTczLjI1NC40My9sNjQyODUzL0dIT1NUL1vQocK3uaTX98rStsC80reisrxdWWxtRiBXaW5YUCBZTjEuOTIgd3d3Lnd6bHUuY29tLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 装机版YN3.3(二周年纪念版)</p>
<p>thunder://QUFmdHA6Ly9mdHAuMDc1OHdiLmNvbS8vyO28/sDgL1NlcnYtVTYuMy81cy93d3cud3psdS5jb20gWWxtRtewu/qw5llOMy4zINChwre5pNf3ytLM4bmpLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 装机版YN3.2</p>
<p>thunder://QUFodHRwOi8veWxtZi45OTY2Lm9yZy95bG1mL1lsbUZfWFAyX1lOMy4yLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 纯净会员版 Y1.88</p>
<p>thunder://QUFmdHA6Ly9yc2Rvd25fanMyOmNubWRsNTg1OEAyMjIuMTg4LjEwLjE2OS/I7bz+ueLFzF+y2df3z7XNsy9ZbG1GX1hQMl9ZMS44OC5pc29aWg==</p>
<p>雨林木风Ghost Winxp2 Y3.1装机版</p>
<p>thunder://QUFmdHA6Ly/QocK3uaTX98rSOnd3Lnd6bHUuY29tQDIwMi4xMDEuMTMwLjEwMi9ZbG1GX1hQMl9ZMy4xLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 En英文版</p>
<p>thunder://QUFmdHA6Ly9zb2Z0MDM1OTo1NUB3d3cuMDM1OS5uZXQvL1lsbUZfWHAyX0VuLmlzb1pa</p>
<p>雨林木风Ghost Winxp2 装机版 Y3.1 ZghSgi 2007特别修正版</p>
<p>thunder://QUFmdHA6Ly8yMjAuMTYxLjE5Mi4xNzgvMjAwNsjtvP67+bXYKLzGy+O7+rOj08O5pL7ftcjI7bz+vK+6zykvWUxNRl9YUDJfWTMxX1pHSFNHSdDe1f2w5i5JU09aWg==</p>
<p>雨林木风Ghost Winxp2 Y3.0装机正式版</p>
<p>thunder://QUFmdHA6Ly9tc2NvZGU6bXNjb2RlQGZ0cC5haXhpdS5vcmcvyc+0q9eox/gvWzIwMDYuMTIuMTRdUE9QwtvMs1dJTlhQIFNQMiC8r7PJsLLXsCAyMDA2teSy2LDmo6jH787eutsg1sbX96OpL3d3dy53emx1LmNvbSBZbG1GX1hQMl9ZMy4wLmlzb1pa</p>
<p>雨林木风 Ghost Mini XP With YlmF SysPrep Tool For Test</p>
<p>thunder://QUFodHRwOi8vMTIyLjAuMjM5LjEzNy9ZbG1GX01pbmlfWFAyL0dob3N0X01pbmlfWFAyLkdIT1pa</p>
<p>雨林木风 WinXP SP2 安装版 Y1.5</p>
<p>thunder://QUFmdHA6Ly9zb2Z0d2FyZTpzb2Z0MjAwNndhcmVANjAuMTkxLjU2LjEwMC9ZbG1GX1NYUDJfWTEuNS5pc29aWg==</p>
<p>雨林木风Ghost Winxp2 HK繁体版</p>
<p>thunder://QUFmdHA6Ly9zb2Z0MDM1OTo1NUB3d3cuMDM1OS5uZXQvWWxtRl9YUDJfSEsuaXNvWlo=</p>
<p>雨林木风Ghost Winxp2 纯净会员版Y1.88正式版</p>
<p>thunder://QUFodHRwOi8vd3d3LmdnZHoubmV0L3J1YW5qaWFuL1lsbUZfWFAyX1kxLjg4Lmlzb1pa</p>
<p>雨林木风Ghost Winxp2 纯净会员版Y1.88</p>
<p>thunder://QUFodHRwOi8vd3d3LmdnZHoubmV0L3J1YW5qaWFuL1lsbUZfWFAyX1kxLjg4Lmlzb1pa</p>
<p>雨林木风Ghost Winxp2 Y2.0 装机版</p>
<p>thunder://QUFodHRwOi8veWxtZi5mb3BpbmcuZ292LmNuL3hwL3lsbWZ4cGJfeTIuMC5pc29aWg==</p>
<p>雨林木风GHOSTXP SP1+启动盘 （网吧推荐）</p>
<p>thunder://QUFmdHA6Ly9mdHAxLnd6bHUuY29tOmZ0cDEud3psdS5jb21ANjAuMTkwLjIxOC45Mi+y2df3z7XNsy93d3cud3psdS5jb20tWWxtRl9XaW5YUF9zcDEuSVNPWlo=</p>
<p>雨林木风 GHOST WinXP2 集成版 Y1.0</p>
<p>thunder://QUFmdHA6Ly92aXAxOjU2NDU0NzUxMjM1NDEyMzIzM2hoaGhAd3d3LmpkeHoubmV0L2lzby9HSE9TVCBXaW5YUDIgvK+zybDmIFkxLjAuaXNvWlo=</p>
<p>雨林木风 PE 工具箱 Y1.1</p>
<p>thunder://QUFodHRwOi8vZG93bi5zbXd0by5jb20vstnX98+1zbMvWWxtRl9QSF9Ub29sc19ZMS4xLmV4ZVpa</p>
<p>雨林木风装机人员常用软件工具盘Y2.0 ISO</p>
<p>thunder://QUFodHRwOi8vd3d3MS5qcHUuZWR1LmNuL3NvZnQvWWxtRl9Ub29sc19ZMi5yYXJaWg==</p>
<p>雨林木风Ghost Win2003 SP1 R2企业版</p>
<p>thunder://QUFmdHA6Ly9yc2Rvd25fanMyOmNubWRsNTg1OEAyMjIuMTg4LjEwLjE2OS/I7bz+ueLFzF+y2df3z7XNsy9ZbG1GX1dpbjIwMDNfUjIuaXNvWlo=</p>
<p>雨林木风 Windows Vista ULTIMATE With SP1 精简版 Y1.2</p>
<p>迅雷下载地址:thunder://QUFodHRwOi8vNjAuMTc0LjY5LjU0L1lsbUZfVmlzdGFfTGl0ZV8xLjIvWWxtRl9WaXN0YV9MaXRlXzEuMi5pc29aWg==</p>
<p>雨林木风 Ghost XP SP2 DVD豪华装机版</p>
<p>迅雷下载地址:thunder://QUFodHRwOi8vMjE4LjIzLjI4LjE0MS9ZbG1GX1hQMl9EVkQvWWxtRl9YUDJfRFZELmlzb1pa</p>
<p>.雨林木风 Ghost Vista SP1 电脑公司装机版 V1.0</p>
<p>迅雷下载地址:thunder://QUFodHRwOi8vMjIxLjIuMjE5LjE2Ni9ZbG1GX1Zpc3RhX1YxLjAvWWxtRl9WaXN0YV9WMS4wLmlzb1pa</p>
<p>雨林木风 Ghost XP SP3 装机版 YN9.6</p>
<p>下载：（不稳定）迅雷下载地址:thunder://QUFodHRwOi8vNTguMjUzLjIzNS44Mzo4MDgwL1lsbUZfWFAzX1lOOS42L1lsbUZfWFAzX1lOOS42Lmlzb1pa</p>
<p>旋风优先离线下载：qqdl://aHR0cDovLzU4LjI1My4yMzUuODM6ODA4MC9ZbG1GX1hQM19ZTjkuNi9ZbG1GX1hQM19ZTjkuNi5pc28=</p>
<p>雨林木风 Windows XP SP3 安装版 YS5.6</p>
<p>迅雷下载地址:thunder://QUFodHRwOi8vMjE4LjIzLjI4LjEzNi9ZbG1GX1hQU1AzX1lTNS42L1lsbUZfWFBTUDNfWVM1LjYuaXNvWlo=</p>
<p>优先旋风：qqdl://aHR0cDovLzIxOC4yMy4yOC4xMzYvWWxtRl9YUFNQM19ZUzUuNi9ZbG1GX1hQU1AzX1lTNS42Lmlzbw==</p>
<p>雨林木风 Ghost XP SP2 豪华装机版 YD2.0 NTFS 08年8月4日 DVD</p>
<p><a href="ed2k://|file|ik-%5Bylmf_xp2_dvd2.0%5D.iso|1383442432|30038BC6AF29230B2C7529BD0DD6901F|/" target="_blank">ik-[ylmf_xp2_dvd2.0].iso (1.29 GB)</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>YlmF_XP3_YN9.8防黑屏正式版</p>
<p>讯雷：</p>
<p>thunder://QUFodHRwOi8vNjAuMTc0LjY5LjM4L1lsbUZfWFAzX1lOOS44Lmlzb1pa</p>
<p>快车:</p>
<p>Flashget://W0ZMQVNIR0VUXWh0dHA6Ly82MC4xNzQuNjkuMzgvWWxtRl9YUDNfWU45LjguaXNvIFtGTEFTSEdFVF0=&amp;yinbing1986</p>
<p>旋风离线下载：qqdl://aHR0cDovLzYwLjE3NC42OS4zOC9ZbG1GX1hQM19ZTjkuOC5pc28=</p>
<p>雨林木风 Ghost XP SP3 纯净版 YN5.5 NTFS 08年7月16日</p>
<p>YlmF_GhostXP_SP3_Y5.5.iso</p>
<p>纳米盘下载:</p>
<p><a href="http://www.namipan.com/d/YlmF_GhostXP_SP3_Y5.5.iso/64f1969729afbd75fd46f61c091ca0d668d4d5020060ef2a" target="_blank">http://www.namipan.com/d/YlmF_Gh … 0d668d4d5020060ef2a</a></p>
<p>迅雷地址：thunder://QUFodHRwOi8vaW1nLm5hbWlwYW4uY29tL2Rvd25maWxlLzY0ZjE5Njk3MjlhZmJkNzVmZDQ2ZjYxYzA5MWNhMGQ2NjhkNGQ1MDIwMDYwZWYyYS9ZbG1GX0dob3N0WFBfU1AzX1k1LjUuaXNvWlo=</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>本人的电驴连接</p>
<p>SP3安装版 YS5.6</p>
<p><a href="ed2k://|file|YlmF_XPSP3_YS5.6.iso|709214208|1E7917DF5268217F1A9E5B5980B5649F|h=WKFAAD6P3ZZ2D35HVGTJOTWBBDANF5CP|/" target="_blank">YlmF_XPSP3_YS5.6.iso (676.36 MB)</a></p>
<p>SP3纯净版 Y5.0（QQ旋风离线无源）</p>
<p><a href="ed2k://|file|YlmF_XPSP3_Y5.0.iso|720625664|6268A42DEBA5BF0B070EC46B5CF82CAC|h=V7RPCGNJXD4ZHYWLOKVP7QTZ3P5B3LRO|/" target="_blank">YlmF_XPSP3_Y5.0.iso (687.24 MB)</a></p>
<p>SP2安装版 Y3.0</p>
<p><a href="ed2k://|file|YlmF_XPSP2_Y3.0.iso|726626304|740146130EB6997604441288AA926309|h=N6TKR2UIPP2ESZ7IFUAC2Y5ZZZ6DQZHB|/" target="_blank">YlmF_XPSP2_Y3.0.iso (692.96 MB)</a></p>
<p>SP3装机版 YN9.7（力荐）（QQ旋风离线无源）</p>
<p><a href="ed2k://|file|YlmF_XP3_YN9.7.iso|722589696|4F7714CB3A9D069CFBFECDA4154EB2E1|h=GJNQMBV4UYIDZZG4DRJJOX3ZG72YMQPV|/" target="_blank">YlmF_XP3_YN9.7.iso (689.12 MB)</a></p>
<p>SP3装机版 YN9.6</p>
<p><a href="ed2k://|file|YlmF_XP3_YN9.6.iso|726290432|F117F0BA3B99F22749D631F496199A8C|h=LKSFYWSBW2J25CHL3RUTRZEHVN5ZUI7Z|/" target="_blank">YlmF_XP3_YN9.6.iso (692.64 MB)</a></p>
<p>YLMF_XP2装机版YF6.0.iso（从CD重制MD5会对不上原版）</p>
<p><a href="ed2k://|file|YLMF_XP2%E8%A3%85%E6%9C%BA%E7%89%88YF6.0.iso|725544960|E9C464B3FC2A822DBE2FB1D6D3F43D70|h=AIF3QZWOFII4FZ5Z42IG3QLAIQHBTHMH|/" target="_blank">YLMF_XP2装机版YF6.0.iso (691.93 MB)</a></p>
<p>YlmF_XP2网吧版YN1.0.iso（从CD重制MD5会对不上原版）（QQ旋风离线无源）</p>
<p><a href="ed2k://|file|YlmF_XP2%E7%BD%91%E5%90%A7%E7%89%88YN1.0.iso|577554432|D1FF57EA55AAC595949890AF24A44E79|h=T6DKJ75D5O45VVN5L6YQJV5J3M4KOALQ|/" target="_blank">YlmF_XP2网吧版YN1.0.iso (550.8 MB)</a></p>
<p>XP2 联想OME版</p>
<p><a href="ed2k://|file|WinXP_Lenovo_Pro.iso|670003200|47B328345E555C217A673390841059EE|h=2BTWIJW4SXMN4NOKDAV3EYTEMHFNOFXX|/" target="_blank">WinXP_Lenovo_Pro.iso (638.96 MB)</a></p>
<p>SP2 装机版 YN7.0</p>
<p><a href="ed2k://|file|YlmF_XP_SP2_YN7.0.iso|718678016|4780C07A6CBC1663C3FADB4C1C500191|h=5CMKB6F25CAR6UFPKYFR7K2IGPHGSHHE|/" target="_blank">YlmF_XP_SP2_YN7.0.iso (685.38 MB)</a></p>
<p>GHO XP2 2008贺岁版</p>
<p><a href="ed2k://|file|YlmF_WinXP_2008.iso|729589760|352E156D6D3234F7AB69769CA1FF5AD8|h=HPBJ456UOWPSJRI7Z7DBYF6WF4L5U3KB|/" target="_blank">YlmF_WinXP_2008.iso (695.79 MB)</a></p>
<p>win2000装机版 YN2.6</p>
<p><a href="ed2k://|file|YlmF_Win2000_YN2.6.iso|686645248|CA9DCF11381EE500804AD8F8516C93DE|h=7A5HOYY4HOFAH5MSQXKPYDUM6DSICLF7|/" target="_blank">YlmF_Win2000_YN2.6.iso (654.84 MB)</a></p>
<p>XP2 繁体版3.0</p>
<p><a href="ed2k://|file|YlmF_TW_Y3.0.iso|706142208|7595A4D9F9333F6B7E29E52697DA80F1|h=YE4FB6BCYR2NZBSMSQ7YXPZQX6MDSCL4|/" target="_blank">YlmF_TW_Y3.0.iso (673.43 MB)</a></p>
<p>XP2 纯净版 Y3.5</p>
<p><a href="ed2k://|file|YlmF_GhostXP_Y3.5.iso|727552000|C04B378631A61ED30037A1807375D3B6|h=4U6OTPGG4P34L6XRNSEY4SCMWBW7UNJT|/" target="_blank">YlmF_GhostXP_Y3.5.iso (693.85 MB)</a></p>
<p>XP3 纯净版 Y5.0</p>
<p><a href="ed2k://|file|YlmF_GhostXP_SP3_Y5.0.iso|732690432|0D1BA11926BC0FC8A13FE8356834D0F2|h=35ACXGI6NBYYUJDNJP574D6UJ5NN6YC3|/" target="_blank">YlmF_GhostXP_SP3_Y5.0.iso (698.75 MB)</a></p>
<p>XP2 英文版 YE2.0</p>
<p><a href="ed2k://|file|YlmF_Ghost_XP2_YE2.0.iso|599169024|55805DEDEBF82EBE05F0B188FFEF06BE|h=5LY47AEN7QOYVOD4VNUYQSEP37IZI23Z|/" target="_blank">YlmF_Ghost_XP2_YE2.0.iso (571.41 MB)</a></p>
<p>XP2 英文版 YE3.0</p>
<p><a href="ed2k://|file|YlmF_EN_YE3.0.iso|714653696|A03FD4FC7C984AAD1DFFACFD5C57BDC4|h=UTMINVVRNWTEHO6Q6H67B33OPIRL5K5C|/" target="_blank">YlmF_EN_YE3.0.iso (681.55 MB)</a></p>
<p>XP3 纯净版 Y1.0</p>
<p><a href="ed2k://|file|YlmF%20GhostXP%20SP3.iso|732393472|8FC1D80BC64FB943F1C1AED149000BA1|h=V5SQKI6ZQQTFGSVFQ3LT7S7F7V3MWWZT|/" target="_blank">YlmF GhostXP SP3.iso (698.46 MB)</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>雨林木风各个版本系统MD5校对信息</p>
<p>——————————————————————–</p>
<p>雨林木风系统MD5对照 （媲美与老会员的帖子）</p>
<p>雨林木风装机版</p>
<p>————————————————————————————————–</p>
<p>雨林木风 Ghost XP SP3 装机版 YN9.7 (YlmF_XP3_YN9.7.iso)</p>
<p>大小: 722589696 字节（689MB）</p>
<p>MD5: 68592DC22E8CED6C1F80A171CB8A0044</p>
<p>SHA1: C69865D6785996F6BCA315C8B709D3B3197DB2BC</p>
<p>CRC32: B63E0521</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP3 装机版 YN9.8</p>
<p>md5：9F425B3D86834BC9A13E2146BEA03EED</p>
<p>=====================</p>
<p>雨林木风 Ghost XP SP3 装机版 YN9.9(YlmF_XP3_YN9.9.iso)</p>
<p>大小: 728444928 字节(694MB)</p>
<p>MD5: CFCC949AFE0479AD82F36C77D1FE0983</p>
<p>SHA1: 508D21AB9A597B3DCB41CA17527B932BE07C2E9D</p>
<p>CRC32: 28E5C85A</p>
<p>雨林木风 YlmF_XP3_YN9.8防黑屏正式版</p>
<p>md5:5CDF4EDE4665E88A4E5A27A3FF5F5CFA</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 豪华装机版 YD2.0 NTFS 08年8月4日 DVD</p>
<p>文件: YlmF_XP2_DVD2.0.iso</p>
<p>MD5: 6C06A521ECBC83F7920F84F33E173D5C</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP3 装机版 YN9.6 (YlmF_XP3_YN9.6.iso)</p>
<p>大小: 726290432 字节(692MB)</p>
<p>MD5: AB768524572ABC410F049932B31EDE84</p>
<p>SHA1: 3F6FAFF2EBE299D548C8EE753CC0D3BF15CE96B2</p>
<p>CRC32: 3AB7BF4A</p>
<p>======================</p>
<p>雨林木风 Ghost Vista SP1 电脑公司装机版 V1.0 NTFS 08年6月29日 Vista版</p>
<p>文件: YlmF_Vista_V1.0.iso</p>
<p>MD5: DDAA34B1E90E3E50E7A8D943BD2ABEA6</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP3 装机版 YN8.0 NTFS 08年6月19日 SP3</p>
<p>文件名：Ghost_XP3_YN8.0.iso</p>
<p>MD5：14626F0822A9304EFFEF02FF0E059FD3</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 DVD豪华装机版NTFS NTFS 08年6月12日 DVD</p>
<p>文件: YlmF_XP2_DVD.iso</p>
<p>MD5: 6612F81CB1D00FABFD6890F449FAC5D0</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 装机版 YN7.0 NTFS 三周年纪念版 (YlmF_XP_SP2_YN7.0.iso)</p>
<p>大小: 718678016 字节(685MB)</p>
<p>MD5: BF32CB1A1D98C2BE6377FB2498C1AC4F</p>
<p>SHA1: FF500A542F8C434812E8ED15D1E07AC634807C53</p>
<p>CRC32: 34AB62D9</p>
<p>======================</p>
<p>Ghost XP SP2 联想OEM专版 NTFS NTFS 08年3月10日 联想OEM专版</p>
<p>WinXP_Lenovo_Pro.iso</p>
<p>MD5:BC3CCCD49B53A1B367C3BD8E58CB4740</p>
<p>======================</p>
<p>雨林木风 2008年度 系统 DVD 合集 NTFS 08年2月1日 2008年DVD合集</p>
<p>YlmF_DVD_2008.ISO</p>
<p>MD5：43b5e2ff6af4281e454f46bf90ceaba6</p>
<p>======================</p>
<p>雨林木风 Ghost WinXP2 2008 新春版 NTFS NTFS 08年1月17日</p>
<p>雨林木风Ghost XP SP2 2008新春版</p>
<p>MD5: F8292FA1DA1D68E9B5595DAE06EB3D4B</p>
<p>======================</p>
<p>雨林木风 Ghost WinXP2 2008 贺岁版(YlmF_WinXP_2008.iso)</p>
<p>大小: 729589760 字节(695MB)</p>
<p>MD5: 099D88ADD08BE7ED96BCB28EE4B2E555</p>
<p>SHA1: C80C232F50421D3FFB1122A520B5CE36ACD0132B</p>
<p>CRC32: ADA2C1D7</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 经典怀旧版 FAT32 07年12月7日 经典怀旧版</p>
<p>YlmF_XP2_Classic.iso</p>
<p>MD5：AE27BF5EAF2B2D8DDDB9DA33E2A3A6AC</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YF6.0 FAT32 (YlmF_XP2_YF6.0.iso)</p>
<p>大小: 725544960 字节(691MB)</p>
<p>MD5: 40C747AD16BE15A70AA21E65F5B251FC</p>
<p>SHA1: 9B62E27FD94350A813FF6E17692A7F813BDD0131</p>
<p>CRC32: 50FE975B</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YF5.5 FAT32 07年9月30日</p>
<p>YlmF_YF5.5.iso</p>
<p>MD5: E85C07D4383C7EB541E51816DBAEE0D0</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YN5.0 NTFS 07年8月11日</p>
<p>MD5: 6739B302E63D64212AFD4A80FE065D65</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 网吧版 YN1.0 NTFS</p>
<p>大小: 577554432 字节(550MB)</p>
<p>MD5: 16656526313F801AD267F2A0865CEFAF</p>
<p>SHA1: CAC881494DF67EDB085D047275AEFA80585AC03D</p>
<p>CRC32: 98403226</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YF3.5 FAT32 07年5月22日</p>
<p>YLMF_XP2装机版Y3.5.iso</p>
<p>MD5: 56E0D760BFCDDE86BFCEB9672EA7AA27</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YN3.3 NTFS 07年4月27日 二周年纪念版</p>
<p>YlmF装机版YN3.3.iso</p>
<p>MD5: D5AAC754C80FBA0EB83AF13E3020F5C6</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YN3.2 NTFS 07年4月6日</p>
<p>YlmF_XP2_YN3.2.iso</p>
<p>MD5: db865016e2e96d0dacbdce124127ab93</p>
<p>======================</p>
<p>雨林木风 Ghost WinXP2 Vista 美化版 Y1.0 NTFS 07年3月3日 美化版</p>
<p>YlmF_XP2_Vista_Y1.0.iso</p>
<p>MD5: 7ff2a04e7a59d022556f7aaf640424fa</p>
<p>======================</p>
<p>雨林木风 2007年度 系统 DVD 合集 NTFS 07年1月18日 2007年DVD合集</p>
<p>YlmF_WinDVD1.0.iso</p>
<p>MD5:a4bf860d4ec3ae691ad3c2f5424423ee</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 装机版 YF3.1 FAT32 06年12月27日</p>
<p>YlmF_XP2_Y3.1.iso</p>
<p>MD5:a274b9f8e8fa39741440d4cb1aff5941</p>
<p>======================</p>
<p>雨林木风 WINDOWS MCE VIP UE v1.0 NTFS 06年10月15日 媒体中心版</p>
<p>YlmGHOmce_v10.iso</p>
<p>MD5:a128120c2697afb35df9a1d8f24fd561</p>
<p>======================</p>
<p>雨林木风 纯净版与精简版</p>
<p>————————————————————————————————–</p>
<p>雨林木风 Ghost XP SP3 纯净版 Y6.0(YlmF_GhostXP_SP3_Y6.0.iso)</p>
<p>大小: 727508992 字节(963MB)</p>
<p>MD5: AEC96811C5A582EE2389B706F0128168</p>
<p>SHA1: 6FA8F3F976880C68ECF8D4A360765D98A3137EE3</p>
<p>CRC32: 2D44F692</p>
<p>雨林木风 Ghost XP SP3 纯净版 Y5.5 NTFS 08年7月16日</p>
<p>YlmF_GhostXP_SP3_Y5.5.iso</p>
<p>MD5：1ec448fbaed15696d7c8945ba3396227</p>
<p>======================</p>
<p>雨林木风 Windows Vista ULTIMATE SP1 精简版 Y1.2 NTFS 08年6月18日 Vista</p>
<p>YlmF_Vista_Lite_1.2.iso</p>
<p>MD5：4a0da54b5cc58891d51743e5ebb7fa3c</p>
<p>======================</p>
<p>雨林木风 Windows XP SP3 精简版 Y1.1 NTFS 08年6月12日</p>
<p>YlmF_XPSP3M_Y1.1.iso</p>
<p>MD5：2cd998fa97f0775693450b74578c8858</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP3 纯净版 Y5.0 NTFS NTFS 08年4月26日 SP3正式版</p>
<p>YlmF_GhostXP_SP3_Y5.0.iso</p>
<p>MD5：188ad375c926a71ed60f294bf0cce558</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 繁体版 Y3.0 NTFS (YlmF_TW_Y3.0.iso)</p>
<p>大小: 706142208 字节(673MB)</p>
<p>MD5: FA9C7CE439ABB7A70363004C5A2ECE96</p>
<p>SHA1: 5346DC05CFC40C8658EB399BFB27F24C54A4907D</p>
<p>CRC32: AA4494B8</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 英文版 YE3.0 NTFS (YlmF_EN_YE3.0.iso)</p>
<p>大小: 714653696 字节(681MB)</p>
<p>MD5: 231B4408373E7EF9F4D85D36F418A668</p>
<p>SHA1: 3E3ED67F7E58BFB5DD070F9AC9CC60D93CE1F514</p>
<p>CRC32: 37C74381</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP3 纯净版 Y1.0 NTFS NTFS 08年2月22日 SP3中文</p>
<p>YlmF_GhostXP_SP3_Y1.0.iso</p>
<p>MD5：e09593bbcd261f5316eb289487e356d7</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN3.5 NTFS 08年2月21日</p>
<p>YlmF_GhostXP_Y3.5.iso</p>
<p>MD5：c8e9ac5574de40eea78a000593b4e543</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 精简版 YN2.0 NTFS 07年12月29日</p>
<p>YlmF_MiniXP_Y2.0.iso</p>
<p>MD5：9c97185b2d344d2369d9970326d2c485</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN3.0 NTFS 07年12月29日</p>
<p>YlmF_GhostXP_Y3.0.iso</p>
<p>MD5：2457a20ace49a65bad37992446466457</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 英文版 YE2.0 NTFS 07年10月19日 英文版</p>
<p>MD5: 7A5405EBD56FC6238A0BF635471127C4</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 繁体版 Y2.0 NTFS 07年9月30日 繁体版</p>
<p>MD5: CB35E19669DB83FB9043BFBADCACD47F</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN2.5 NTFS 07年10月15日 修正版</p>
<p>YlmF_GhostXP_Y2.5.iso</p>
<p>MD5：0601202d1291cb18b3fdb5ff22e0a794</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN2.0 NTFS 07年7月26日</p>
<p>[MD5: 1482187AB0F09D112EA9A12149A26062</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 精简版 Y1.5 NTFS 07年6月7日 修正版</p>
<p>YlmF_MiniXP_Y1.5.iso</p>
<p>MD5：626c76007d22235feb235bf91b39a170</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 精简版 Y1.0 NTFS 07年5月1日</p>
<p>YlmF_MiniXP_Y1.0.iso</p>
<p>MD5：9cb6387f48a9e2c8dd4fdb0e72229b72</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN1.93 NTFS 07年4月28日 二周年纪念版</p>
<p>YlmF_XP2_YN1.93.iso</p>
<p>MD5: 22256E97B40F03CFD4F6D7ED31994371</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN1.92 NTFS 07年4月24日</p>
<p>YlmF_WinXP_YN1.92.iso</p>
<p>MD5: 0d04048b52bc98a5820b5e571cfc180c</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN1.91 NTFS 07年3月28日</p>
<p>YlmF_XP2_YN1.91.iso</p>
<p>MD5: f125b003ac8fd2f635e2427adb886d88</p>
<p>======================</p>
<p>雨林木风 Ghost XP SP2 纯净版 YN1.88 NTFS 06年12月1日 IE7+WMP11</p>
<p>YlmF_XP2_Y1.88.iso</p>
<p>MD5: 97185f92ce60da0c5adead9543f9e3dc</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 En 英文版 NTFS 06年9月16日 英文版</p>
<p>MD5: 42DCAB5A745662B80061092DD80FC7A4</p>
<p>======================</p>
<p>雨林木风 Ghost Winxp2 HK 繁体版 NTFS 06年9月16日 繁体版</p>
<p>YlmFXP2_HK.iso</p>
<p>MD5: b1b516f58e45900ae0622a607a57fe8f</p>
<p>======================</p>
<p>雨林木风2000和2003版本（ghost）</p>
<p>————————————————————————————————–</p>
<p>雨林木风 Ghost Win2003 SP1 R2 NTFS 06年12月27日 企业版</p>
<p>YlmF_Win2003_R2.iso</p>
<p>MD5：791c4090e189b1d4e493ef43bdeeb95a</p>
<p>======================</p>
<p>雨林木风 Ghost Win2000 Pro SP4 YN2.6 Pro 版 （YlmF_Win2000_YN2.6.iso）</p>
<p>大小: 686645248 字节（654MB）</p>
<p>MD5: 5026FAA657C09D4C1FC9ADA53DE66C89</p>
<p>SHA1: 8D692F7C408E0107518167FF7735974361E4FD7A</p>
<p>CRC32: 4FCBAE2C</p>
<p>======================</p>
<p>雨林木风 Ghost Win2000 Pro SP4 Y2.5 NTFS 06年12月21日 Pro 版</p>
<p>YlmF_2000_Y2.5.iso</p>
<p>MD5:92b0f2440853b63b761422cf9432e4ef</p>
<p>======================</p>
<p>雨林木风安装版本（xp+2003）</p>
<p>————————————————————————————————–</p>
<p>雨林木风 Windows XP SP3 安装版 YS8.0（YlmF_XPSP3_YS8.0F.iso）</p>
<p>大小: 711530496 字节（678MB）</p>
<p>MD5: 88524D781055119EBD144EBE7117FBD0</p>
<p>SHA1: 4EE2B0E7D0DD9BDC99401B12299C83A0EA5487FC</p>
<p>CRC32: B7A8638E</p>
<p>======================</p>
<p>雨林木风 Windows XP SP3 安装版 Y5.6 （YlmF_XPSP3_YS5.6.iso）</p>
<p>大小: 709214208 字节（676MB）</p>
<p>MD5: DDF1C70BC510F9CFC40D23E0399D94C9</p>
<p>SHA1: CE813C8C37EA054C3E897F9E891E12C986C4D446</p>
<p>CRC32: 99552219</p>
<p>======================</p>
<p>雨林木风 WinXP SP2 安装版 Y3.5 自 定 08年5月4日 SP2安装版</p>
<p>YlmF_XPSP2_Y3.5.iso</p>
<p>MD5：4afc5dfc336bc9557def41eb5686b94d</p>
<p>======================</p>
<p>雨林木风 Windows XP SP3 纯净安装版 自 定 08年4月26日 SP3安装版</p>
<p>YlmF_XPSP3_VOL.iso</p>
<p>MD5：998d95b0aaa3c1907c879b1115cd1a5a</p>
<p>======================</p>
<p>雨林木风 Windows XP SP3 安装版 Y5.0(YlmF_XPSP3_Y5.0.iso)</p>
<p>大小: 720625664 字节(687MB)</p>
<p>MD5: E790FC275CAB9DDA9AA809211E7EDBB5</p>
<p>SHA1: 7494018292C74F1796D5788C5F73C4D0E305A434</p>
<p>CRC32: 8E5F6767</p>
<p>======================</p>
<p>雨林木风 Windows Server 2003 SP2 企业安装版 Y1.0 NTFS （YlmF_2K3SP2_Y1.0.iso）</p>
<p>大小: 727347200 字节（693MB）</p>
<p>MD5: 1012BD6A81B4335AF7FE093C6FF2926A</p>
<p>SHA1: E1219E2E2D03AE55859D61A1590D2ED39A20706E</p>
<p>CRC32: 123AC774</p>
<p>======================</p>
<p>雨林木风 WinXP SP2 安装版 Y3.0 (YlmF_XPSP2_Y3.0.iso)</p>
<p>大小: 726626304 字节（692MB）</p>
<p>MD5: C1452DFC4262F11C549F94E0C5FAB343</p>
<p>SHA1: 4407AC3E60147A26AE4C1EF0DEF01D77509E7067</p>
<p>CRC32: 2DF0F163</p>
<p>======================</p>
<p>雨林木风 WinXP SP2 安装版 Y1.5 自 定 06年12月30日 XP安装版</p>
<p>YlmF_SXP2_Y1.5.iso</p>
<p>MD5：1876cd208b27645b7198d98fa5417d66</p>
<p>雨林木风 WIN XP SP3 装机版 YN9.9 CN更新、修正版</p>
<p>雨林木风 Ghost XP SP3 装机版 YN9.9_BY_CN.iso</p>
<p>大小: 729290752 字节695MB</p>
<p>MD5: 4A17649646D6655412B910525AD56821</p>
<p>SHA1: 8ACE7E6020B26BB0E98BF9690B5465E2D58DC8FB</p>
<p>CRC32: BB77F37B</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/952.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 ‘Scroll to Top’ jQuery Solutions</title>
		<link>http://www.zhblog.net/archives/950.html</link>
		<comments>http://www.zhblog.net/archives/950.html#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:23:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程其他]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript技巧]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=950</guid>
		<description><![CDATA[1. jQuery topLink Plugin The topLink jQuery plugin developed by David Walsh, allows you to fade in a “to the top” link when the users scrolls down on the page. 2. Disappearing “Scroll to top” link with jQuery and CSS This tutorial will help you build a scroll to top link, that appears when the [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://davidwalsh.name/jquery-top-link" target="_blank">1. jQuery topLink Plugin</a></h3>
<p>The topLink <a href="http://www.zhblog.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> plugin developed by David Walsh, allows you to fade in a “to the top” link when the users scrolls down on the page.</p>
<p><img class="pic" src="http://www.net-kit.com/wp-content/uploads/2010/02/jquery-toplink.gif" alt="jQuery topLink Plugin" width="585" height="183" /></p>
<div class="entitle">
<h3><a href="http://briancray.com/2009/10/06/scroll-to-top-link-jquery-css/" target="_blank">2. Disappearing “Scroll to top” link with jQuery and CSS</a></h3>
</div>
<p>This tutorial will help you build a scroll to top link, that appears when the user scrolls down, and disappears when users reach the top of the page using a combination of CSS and jQuery.<span id="more-950"></span></p>
<p><img class="pic" src="http://www.net-kit.com/wp-content/uploads/2010/02/scroll-to-top-link-jquery-css.gif" alt="Disappearing 'Scroll to top' link" width="585" height="183" /></p>
<div class="entitle">
<h3><a href="http://www.cherrysave.com/jquery/create-a-hovering-scroll-to-top-button-with-jquery/" target="_blank">3. Disappearing “Scroll to top” link with jQuery and CSS</a></h3>
</div>
<p>Here’s a simple Scroll to Top button that hovers in the bottom right corner of your screen. he code is largely adapted from Brian Cray and David Walsh, but it’s a combination of the two ideas with the addition of a fade effect on the button and smooth scrolling action.</p>
<p><img class="pic" src="http://www.net-kit.com/wp-content/uploads/2010/02/jquery-hovering-scroll-to-top.gif" alt="Hovering Scroll to Top Button With JQuery" width="585" height="183" /></p>
<div class="entitle">
<h3><a href="http://blog.ph-creative.com/post/jQuery-Plugin-Scroll-to-Top-v3.aspx" target="_blank">4. jQuery Plugin: Scroll to Top</a></h3>
</div>
<p>Here’s an unobtrusive, easy-to-install, jQuery script that adds a fading scroll to top link with animated scrolling. the script degrades gracefully, leaving nothing but a normal &lt;a href &gt; link.</p>
<p><img class="pic" src="http://www.net-kit.com/wp-content/uploads/2010/02/scroll-to-top-jquery-plugin.gif" alt="jQuery Plugin Scroll to Top" width="585" height="183" /></p>
<div class="entitle">
<h3><a href="http://www.mattvarone.com/web-design/uitotop-jquery-plugin/" target="_blank">5. UItoTop jQuery Plugin</a></h3>
</div>
<p>Inspired by the great idea of David Walsh’s jQuery topLink Plugin, Matt Varone made a similar plugin but with two key differences, this one does not require you to add extra html markup or extra plugins to function. It will only work when <a href="http://www.zhblog.net/archives/tag/javascript" class="st_tag internal_tag" rel="tag" title="标签 javascript 下的日志">JavaScript</a> is turned on.</p>
<p><img class="pic" src="http://www.net-kit.com/wp-content/uploads/2010/02/top-page-jquery.gif" alt="UItoTop jQuery Plugin" width="585" height="183" /></p>
<div class="entitle">
<h3><a href="http://www.dynamicdrive.com/dynamicindex3/scrolltop.htm" target="_blank">6. jQuery Scroll to Top Control v1.1 </a></h3>
</div>
<p>This script displays a stationary control at the lower right corner of the window that when clicked on gently scrolls the page back up to the top. Instead of always being visible on the user’s screen, the script lets you specify how far down the page the user is at (in pixels) before revealing the control.</p>
<p><img class="pic" src="http://www.net-kit.com/wp-content/uploads/2010/02/scroll-to-top-control-jquery.gif" alt="jQuery Scroll to Top Control" width="585" height="183" /></p>
<div class="entitle">
<h3><a href="http://blog.mogosanu.ro/css/go-to-top-of-page-animat-cu-jquery/" target="_blank">7. Smooth GoToTop WordPress plugin </a></h3>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/950.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何获取Skydrive音乐的外链</title>
		<link>http://www.zhblog.net/archives/940.html</link>
		<comments>http://www.zhblog.net/archives/940.html#comments</comments>
		<pubDate>Mon, 19 Dec 2011 08:27:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程其他]]></category>
		<category><![CDATA[skydrive]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=940</guid>
		<description><![CDATA[现在我们要上传一首”Mix”的音乐并得到其外链，关于注册账号以及新建文件夹请移步到http://lqcc.info/technical-overview/website-operators-technical-overview/skydirve-picture-outside-the-chain.html 查看。 1上传歌曲，如图: 2上传好歌曲列表页面顶部地址复制id=部分后的785AFBBC20E026A6%21121 3放在http://storage.live.com/items/后得到地址http://storage.live.com/items/785AFBBC20E026A6%21121 在新页面打开得到一个如图的xml文本 4我们需要对应歌曲的ResourceID和RelationshipName部分。 我们上传的歌曲Mix 的ResourceID是 785AFBBC20E026A6!126 RelationshipName是Mix.mp3 skydrive外链音乐格式为http://storage.live.com/items/ResourceID/?RelationshipName 这样我们上传的Mix最后的地址就是 http://storage.live.com/items/785AFBBC20E026A6!126?Mix.mp3 转自：http://www.lqcc.info/sharing-pioneer/how-to-get-music-outside-the-chain-of-skydrive.html]]></description>
			<content:encoded><![CDATA[<p>现在我们要上传一首”Mix”的音乐并得到其外链，关于注册账号以及新建文件夹请移步到<a title="SkyDrive图片外链教程" href="http://lqcc.info/technical-overview/website-operators-technical-overview/skydirve-picture-outside-the-chain.html" target="_blank">http://lqcc.info/technical-overview/website-operators-technical-overview/skydirve-picture-outside-the-chain.html</a> 查看。</p>
<p>1上传歌曲，如图:</p>
<p><a href="http://public.sn2.livefilestore.com/y1pZnr9G3zJAksAs8VwXsE7Z0PMvM3nMJsQGadIap1PIEJ9LHNH7idIMacuVOo1_5MeQu0pvwmOzXbcA8K7SO78qQ/sky-01.png"><img title="上传歌曲" src="http://public.sn2.livefilestore.com/y1pZnr9G3zJAksAs8VwXsE7Z0PMvM3nMJsQGadIap1PIEJ9LHNH7idIMacuVOo1_5MeQu0pvwmOzXbcA8K7SO78qQ/sky-01.png" alt="" width="401" height="112" /></a></p>
<p>2上传好歌曲列表页面顶部地址复制id=部分后的785AFBBC20E026A6%21121</p>
<p><a href="http://public.sn2.livefilestore.com/y1pTndTJzcX6lLKmRGb3KmS5oriVO9CW_kbWtamgRO1_ZsP_s9WA8UKHCDHzEwrh8BB-prEaLm1hkD8P81Kf-NPFg/sky-02.png"><img title="复制id=部分后的文字" src="http://public.sn2.livefilestore.com/y1pTndTJzcX6lLKmRGb3KmS5oriVO9CW_kbWtamgRO1_ZsP_s9WA8UKHCDHzEwrh8BB-prEaLm1hkD8P81Kf-NPFg/sky-02.png" alt="" width="401" height="112" /></a></p>
<p>3放在http://storage.live.com/items/后得到地址<a href="http://storage.live.com/items/785AFBBC20E026A6%21121">http://storage.live.com/items/785AFBBC20E026A6%21121</a></p>
<p>在新页面打开得到一个如图的xml文本<span id="more-940"></span></p>
<p><a href="http://public.sn2.livefilestore.com/y1pykYvpALE8GOES1jOdgu2A2z8omq-OQbyKisoGceMMs7l_Fk1cVKTzoX70M0yPpeGASOqdky1oXlH5ZiUGHRWWg/sky-03.png"><img title="得到一个xml文本" src="http://public.sn2.livefilestore.com/y1pykYvpALE8GOES1jOdgu2A2z8omq-OQbyKisoGceMMs7l_Fk1cVKTzoX70M0yPpeGASOqdky1oXlH5ZiUGHRWWg/sky-03.png" alt="" width="401" height="112" /></a></p>
<p>4我们需要对应歌曲的ResourceID和RelationshipName部分。</p>
<p>我们上传的歌曲Mix 的ResourceID是 785AFBBC20E026A6!126</p>
<p>RelationshipName是Mix.mp3</p>
<blockquote><p>skydrive外链音乐格式为http://storage.live.com/items/ResourceID/?RelationshipName</p></blockquote>
<p>这样我们上传的Mix最后的地址就是</p>
<p><a href="http://storage.live.com/items/785AFBBC20E026A6!126?Mix.mp3">http://storage.live.com/items/785AFBBC20E026A6!126?Mix.mp3</a></p>
<p>转自：<a href="http://www.lqcc.info/sharing-pioneer/how-to-get-music-outside-the-chain-of-skydrive.html">http://www.lqcc.info/sharing-pioneer/how-to-get-music-outside-the-chain-of-skydrive.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/940.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://storage.live.com/items/785AFBBC20E026A6!126?Mix.mp3" length="3233773" type="audio/mpeg" />
		</item>
		<item>
		<title>CONTAO国外开源CMS</title>
		<link>http://www.zhblog.net/archives/937.html</link>
		<comments>http://www.zhblog.net/archives/937.html#comments</comments>
		<pubDate>Sun, 11 Dec 2011 13:18:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[开源代码]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=937</guid>
		<description><![CDATA[官方网站：http://www.contao.org/ 演示地址：http://demo.contao.org/contao/ 下载地址：http://www.contao.org/download.html 文章来源：http://www.OSphp.com.cn 程序介绍： Contao 是一个采用 PHP 开发的 CMS 建站系统，具备非常高的安全性和良好的搜索；可方便设置用户权限、在线更新服务和先进的CSS框架以及例如日历、新闻和表单等基层模块；曾用名：Typolight。 Contao is an open source content management system (CMS) for people who want a professional internet presence that is easy to maintain. The state-of-the-art structure of the system offers a high security standard and allows you to develop search engine friendly websites that are [...]]]></description>
			<content:encoded><![CDATA[<p><strong>官方网站：</strong>http://www.contao.org/<br />
<strong>演示地址：</strong>http://demo.contao.org/contao/<br />
<strong>下载地址：</strong>http://www.contao.org/download.html<br />
<strong>文章来源：http://www.OSphp.com.cn</strong><br />
<strong>程序介绍：</strong><br />
Contao 是一个采用 <a href="http://www.zhblog.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a> 开发的 <a href="http://www.zhblog.net/archives/tag/cms" class="st_tag internal_tag" rel="tag" title="标签 cms 下的日志">CMS</a> 建站系统，具备非常高的安全性和良好的搜索；可方便设置用户权限、在线更新服务和先进的CSS框架以及例如日历、新闻和表单等基层模块；曾用名：Typolight。</p>
<p><img class="alignnone" title="contao" src="http://st1.contao.org/tl_files/images/layout/logo-trans.png" alt="" width="196" height="65" /></p>
<p>Contao is an open source content management system (CMS) for people who want a professional internet presence that is easy to maintain. The state-of-the-art structure of the system offers a high security standard and allows you to develop search engine friendly websites that are also accessible for people with disabilities. Furthermore, the system can be expanded flexibly and inexpensively. Easy management of user rights, the Live Update Service, the modern CSS framework and many already integrated modules (news, calendar, forms, etc.) have quickly made Contao one of the most popular open source content management systems on the market.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/937.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JustHost主机购买两年超级划算</title>
		<link>http://www.zhblog.net/archives/923.html</link>
		<comments>http://www.zhblog.net/archives/923.html#comments</comments>
		<pubDate>Mon, 28 Nov 2011 05:09:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=923</guid>
		<description><![CDATA[这几天Justhost官方系统正在调整，今天无意中测试下半价优惠码还好不好用的时候，竟然发现个问题。输入JH主机半价优惠码后，发现年付方案并没有优惠，一年需要59.4美金，而不是41.88美金。但是2年主机方案只需要59.52美金，后者超级划算。 &#160; JustHost主机官方网站：JustHost.com &#160;]]></description>
			<content:encoded><![CDATA[<p>这几天Justhost官方系统正在调整，今天无意中测试下半价优惠码还好不好用的时候，竟然发现个问题。输入JH主机半价优惠码后，发现年付方案并没有优惠，一年需要59.4美金，而不是41.88美金。但是2年主机方案只需要59.52美金，后者超级划算。<br />
<a href="http://www.justhost.com/track/jh16658"><img class="alignnone size-full wp-image-926" title="QQ截图20111128141727" src="http://www.zhblog.net/wp-content/uploads/2011/11/QQ截图20111128141727.jpg" alt="" width="660" height="229" /></a><br />
&nbsp;<br />
JustHost主机官方网站：<a href="http://www.justhost.com/track/jh16658" rel="nofollow" target="_blank">JustHost.com</a></p>
<p><img class="alignnone" title="测试图像" src="https://bapqfw.bay.livefilestore.com/y1peekW7YMCt2q-ytCZwcrwiRmoFl1iPuS0GkKMUe5hewP7DAZuUP71h24DTMkdatVpXbaiuOBH0jBj79QCBpOgj8PBSSwfOlQl/55_1317090264_3189096.jpg" alt="justhost" width="500" height="750" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/923.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8个图片展示jQuery插件及教程</title>
		<link>http://www.zhblog.net/archives/920.html</link>
		<comments>http://www.zhblog.net/archives/920.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 09:00:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程其他]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=920</guid>
		<description><![CDATA[1. Nivo Slider Nivo Slider是世界知名的轻量级jQuery图片幻灯片插件，可以制作出很漂亮的效果。它完全免费且彻底开源。 2. Sponsor Flip Wall With jQuery &#38; CSS Sponsor Flip Wall是一个非常不错的显示数据到网格里的插件，它使用PHP、CSS与jQuery翻转插件制作而成，其实就是为了创建一个翻转赞助商页面。可以用来展示你的客户或生成一个整洁的翻转动画组合项目。  3. PhotoSwipe PhotoSwipe是一个免费的基于HTML/CSS/j的图片画廊插件，尤其可用于移动设备。 4. TN3 Gallery TN3 Gallery也是一个jQuery图片画廊和幻灯片展示插件，支持多种转换效果及多相簿选项，可定制CSS皮肤等。它适用于所有的桌面及移动浏览器。 5. SIDEWAYS – jQuery fullscreen image gallery 一个简单而又飘逸的全屏图片画廊插件，由jQuery框架及一些简单的CSS创建。 6. Moleskine Notebook with jQuery Booklet 在这篇文章中，你可以学习到如何设计一个虚拟的Moleskine笔记本。 7. Orbit: A Slick jQuery Image Slider Plugin Orbit是由ZURB开发的一个jQuery幻灯片插件。该插件非常轻量级（只有4KB），容易使用且拥有许多好功能。 8. Exposure Exposure是一个图片预览插件，用于创建丰富、自定义的视觉体验，可以处理海量数据。]]></description>
			<content:encoded><![CDATA[<p><strong>1. <span style="color: #006699;">Nivo Slider</span></strong></p>
<p>Nivo Slider是世界知名的轻量级jQuery图片幻灯片插件，可以制作出很漂亮的效果。它完全免费且彻底开源。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580245/1ee4e183-38ee-3e9a-8c73-35057c01c2e3.jpeg" alt="" /><br />
<strong>2. <span style="color: #006699;">Sponsor Flip Wall With <a href="http://www.zhblog.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> &amp; CSS</span></strong></p>
<p>Sponsor Flip Wall是一个非常不错的显示数据到网格里的插件，它使用PHP、CSS与jQuery翻转插件制作而成，其实就是为了创建一个翻转赞助商页面。可以用来展示你的客户或生成一个整洁的翻转<a href="http://flash.zol.com.cn/" target="_blank">动画</a>组合项目。 <span id="more-920"></span></p>
<p><img src="http://dl.iteye.com/upload/attachment/580247/5afd26eb-2450-3c01-ae08-46696dff27b0.jpeg" alt="" /><br />
<strong>3. <span style="color: #006699;">PhotoSwipe</span></strong></p>
<p>PhotoSwipe是一个免费的基于HTML/CSS/j的图片画廊插件，尤其可用于移动设备。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580249/59ca5f64-237a-3c48-8a9a-248e90ae2a22.jpeg" alt="" /><br />
<strong>4. <span style="color: #006699;">TN3 Gallery</span></strong></p>
<p>TN3 Gallery也是一个jQuery图片画廊和幻灯片展示插件，支持多种转换效果及多相簿选项，可定制CSS皮肤等。它适用于所有的桌面及移动浏览器。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580251/ba46a321-7be8-3854-9627-408f85985406.jpeg" alt="" /><br />
<strong>5. <span style="color: #006699;">SIDEWAYS – jQuery fullscreen image gallery</span></strong></p>
<p>一个简单而又飘逸的全屏图片画廊插件，由jQuery框架及一些简单的CSS创建。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580253/16e8f079-ac5b-3599-b5f1-51a68cc39232.jpeg" alt="" /><br />
<strong>6. <span style="color: #006699;">Moleskine Notebook with jQuery Booklet</span></strong></p>
<p>在这篇文章中，你可以学习到如何设计一个虚拟的Moleskine<a href="http://detail.zol.com.cn/notebook_index/subcate16_list_1.html" target="_blank">笔记本</a>。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580255/0d6357e0-0c56-3ea6-bddd-fd486f732edb.jpeg" alt="" /><br />
<strong>7. <span style="color: #006699;">Orbit: A Slick jQuery Image Slider Plugin</span></strong></p>
<p>Orbit是由ZURB开发的一个jQuery幻灯片插件。该插件非常轻量级（只有4KB），容易使用且拥有许多好功能。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580257/ad1ac5a2-0a82-39b7-b3d5-dd1485b77355.jpeg" alt="" /><br />
<strong>8. <span style="color: #006699;">Exposure</span></strong></p>
<p>Exposure是一个图片预览插件，用于创建丰富、自定义的视觉体验，可以处理海量数据。</p>
<p><img src="http://dl.iteye.com/upload/attachment/580259/14233ce0-8860-3178-aaf8-f3eb8cbaf5f9.jpeg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/920.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash-Based Galleries For Your Images</title>
		<link>http://www.zhblog.net/archives/916.html</link>
		<comments>http://www.zhblog.net/archives/916.html#comments</comments>
		<pubDate>Sat, 22 Oct 2011 16:30:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[网站建设]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=916</guid>
		<description><![CDATA[In many situations web designers should avoid Flash and prefer usual text-based presentation. For instance, in most tasks related to pure text presentation Flash is neither necessary nor user-friendly, and it also has some serious accessibility problems: in fact, “pure” text is easier to maintain and easier to copy and paste. However, if you’d like [...]]]></description>
			<content:encoded><![CDATA[<p>In many situations web designers should avoid Flash and prefer usual text-based presentation. For instance, in most tasks related to pure text presentation Flash is neither necessary nor user-friendly, and it also has some serious accessibility problems: in fact, “pure” text is easier to maintain and easier to copy and paste.</p>
<p>However, if you’d like to present some multimedia-content, particularly images, Flash can often be a feasible solution, with flexible image management for web designers and impressive visual presentation for users. Used moderately, Flash-based galleries can give the presentation a fresh spark and <strong>create a rich visual experience</strong> you might want to offer your visitors.</p>
<p>In this post we present some of the <strong>free, attractive and flexible Flash-based galleries</strong> you can use to present your images more effectively. You might find some useful references to further galleries in our article <a title="30 Best Solutions For Image Galleries, Slideshows and Lightboxes" href="http://www.smashingmagazine.com/2007/05/18/30-best-solutions-for-image-galleries-slideshows-lightboxes/">30 Best Solutions For Image Galleries, Slideshows and Lightboxes</a>.</p>
<div id="textadtarget">
<div id="textad">[<strong>Editor's note</strong>: Have you already got your copy of the <em>Smashing Book #2</em>? The book shares valuable practical insight into design, usability and coding. <a href="http://auslieferung.commindo-media-ressourcen.de/www/delivery/ck.php?oaparams=2__bannerid=2862__zoneid=68__OXLCA=1__cb=10bec533e9__oadest=https%3A%2F%2Fshop.smashingmagazine.com%2Fsmashing-book-2.html%3Fpk_campaign%3Dsmashing-book-2%26pk_kwd%3Dsm-ta-01" target="_blank">Have a look at the contents</a>.]</p>
<div id="beacon_10bec533e9"><img src="http://auslieferung.commindo-media-ressourcen.de/www/delivery/lg.php?bannerid=2862&amp;campaignid=1018&amp;zoneid=68&amp;loc=1&amp;referer=http%3A%2F%2Fcoding.smashingmagazine.com%2F2007%2F10%2F12%2Fflash-based-galleries-for-your-images%2F&amp;cb=10bec533e9" alt="" width="0" height="0" /></div>
</div>
</div>
<h3>Flash-based Galleries: An Overview</h3>
<p><a href="http://www.no3dfx.com/polaroid/">Polaroid Gallery</a> offers a quite unusual way of presenting a bunch of photos online. The script loads images and image titles dynamically from an external XML file. Then the script processes the data and creates an interactive flash gallery in which all <strong>images are presented as Polaroid-photos</strong>.</p>
<p>The images are kind of thrown on the the table randomly and create a beautiful mess — the idea resembles <a href="http://www.ted.com/index.php/talks/view/id/131">BumpTop</a>, physics-driven 3D-desktop with draggable folders and files. You can move the polaroids around with the mouse, and you can double click a Polaroid picture to zoom in.<span id="more-916"></span></p>
<p><a title="Polaroid Gallery" href="http://www.no3dfx.com/polaroid/"><img src="http://www.smashingmagazine.com/images/flash-galleries/polaroid.jpg" alt="Polaroid Flash Gallery" width="458" height="382" /></a></p>
<p>To use the gallery you simply need to define your images and your galleries by <strong>modifying the XML-file</strong>accordingly. You can also define the legend to describe the content of the images. Besides, you can specify your Flickr ID and the gallery will automatically load the latest pictures from your Flickr RSS-feed. The loaded pictures are automatically scaled, centred and smoothed.</p>
<p>The script is free and open-source, and the .zip-package includes a .fla-file you can modify to improve the script. To ensure an optimal presentation your images should have a square format; otherwise the Polaroids don’t look particularly pretty.</p>
<p><a href="http://www.dezinerfolio.com/2007/05/21/the-flash-xml-gallery-free-download/">The Flash XML Gallery</a> offers a flexible solution for <strong>integration of multiple albums into one single gallery</strong>. The script can integrate popular photo sharing communities such as Flickr and Picasa. You can use a wide range of transition effects.</p>
<p><a title="The Flash XML Gallery" href="http://www.dezinerfolio.com/2007/05/21/the-flash-xml-gallery-free-download/"><img src="http://www.smashingmagazine.com/images/flash-galleries/simple.png" alt="The Flash XML Gallery" width="499" height="565" /></a></p>
<p>The images can be read from RSS or added manually. To add the images you have to upload them to the specified directory and define them in the XML-file. The only usability issues of The Flash XML Gallery are the facts that you a) can’t navigate through the gallery by clicking on the images and b) you can’t get back from the fullscreen to the overview simply clicking on the image. In both cases you have to use the navigation slider below the displayed image. The slider informs the user whether the next image is already loaded.</p>
<p><a title="The Flash XML Gallery" href="http://www.dezinerfolio.com/2007/05/21/the-flash-xml-gallery-free-download/"><img src="http://www.smashingmagazine.com/images/flash-galleries/xml.png" alt="The Flash XML Gallery" width="500" height="251" /></a></p>
<p><a href="http://www.dezinerfolio.com/2007/06/07/dfgallery/">dfGallery</a> is probably one of the most powerful Flash-based gallery solutions out there. It supports the instant integration of Flickr, Picasa , Fotki and Photobucket; of course, you can add your custom images as well or add an RSS-feed from which the images should be taken.</p>
<p>The <strong>gallery is easily customizable</strong>, meaning that you can e.g. define the time duration of the slideshow, hide menu system and scale the images from RSS feeds. dfGallery also enables you to switch between the single view mode, full screen mode and the print screen mode.</p>
<p><a title="dfGallery" href="http://www.dezinerfolio.com/2007/06/07/dfgallery/"><img src="http://www.smashingmagazine.com/images/flash-galleries/dfgallery1.jpg" alt="dfGallery" width="509" height="363" /></a></p>
<p><a title="dfGallery" href="http://www.dezinerfolio.com/2007/06/07/dfgallery/"><img src="http://www.smashingmagazine.com/images/flash-galleries/dfgallery2.png" alt="dfGallery" width="508" height="363" /></a></p>
<p>Apart from wide language support, the gallery makes use of a liquid layout and therefore fits to any size you specify. And it’s also possible to define the <strong>background mp3 music</strong> for your galleries. The full manual for dfGallery including examples and necessary code snippets for customization is available in the <a href="http://www.dezinerfolio.com/dfgallery/manual/">dfGallery Reference Documentation</a>.</p>
<p><a href="http://www.paulvanroekel.nl/picasa/flashpageflip/">Flash Page Flip</a> is a Picasa template based on the free version of the FlashPageFlip flash engine on<a href="http://www.flashpageflip.com/">Flashpageflip.com</a>. It lacks the advanced functions of the commercial versions but still makes a very nice photo album on your website. You can <strong>see and hear the pages flip</strong>.</p>
<p><a href="http://www.paulvanroekel.nl/picasa/flashpageflip/"><img src="http://www.smashingmagazine.com/images/flash-galleries/flashpageflip.jpg" alt="Flash Page Flip" width="500" height="288" /></a></p>
<p>The download offers two templates: one for a landscape oriented album, the other for a portrait oriented album. Sizes can be changed by editing the <code>header.xml</code> file in the template folder.</p>
<p><a href="http://www.paulvanroekel.nl/picasa/photostack/index.asp">Picasa Flash Photo Stack Gallery</a> is a simple Flash template that enables you to click through a stack of your favourite photographs. Unfortunately available only as plug-in for Picasa.</p>
<p><a href="http://www.paulvanroekel.nl/picasa/photostack/index.asp"><img src="http://www.smashingmagazine.com/images/flash-galleries/stack.jpg" alt="Flash Photo Stack Gallery" width="438" height="334" /></a></p>
<p>You can find more plugin for Picasa users in the overview <a href="http://www.xyberneticos.com/index.php/2007/10/08/crear-galerias-de-imagenes-profesionales-con-picasa/">Crear galerías de imágenes profesionales con Picasa</a> (Spanish).</p>
<p><a href="http://www.dsi.uniroma1.it/~caminiti/slideshows/">Carousel</a> is another interesting approach for showcasing images. The script reads the data from a HTML- or XML-file and displays the images in a circle. Similar to iPhone, visitors can browse through the gallery sliding the mouse along the screen; alternatively also the keyboard can be used.</p>
<p><a href="http://www.dsi.uniroma1.it/~caminiti/slideshows/"><img src="http://www.smashingmagazine.com/images/flash-galleries/carousel.jpg" alt="Flash Page Flip" width="500" height="364" /></a></p>
<p>You can define an automatic rotation of the images (max rotation set to 90°/sec counterclockwise). New modified versions are coming soon – as well as a detailed documentation on how the XML-files should be structured.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/916.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>27 个漂亮的 Web 导航设计例子</title>
		<link>http://www.zhblog.net/archives/912.html</link>
		<comments>http://www.zhblog.net/archives/912.html#comments</comments>
		<pubDate>Sat, 15 Oct 2011 11:26:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程其他]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=912</guid>
		<description><![CDATA[Handle With Love 　　整洁和有组织的垂直导航。惊人的漂亮图片和颜色！ Weightshift 　　很酷的使用菜单导航，优雅！ Don’t throw Batteries 　　优雅整洁的菜单 FA Design 　　Another great example of typography based menu. Album Art Collection 　　Amazing layout, navigation and menu. Polyester Studio 　　Awesome colours with integrated menu and flow. It never gets boring. Doopsuiker Poppies 　　Pretty menu, nice flow and navigation. simpleasmilk.co.uk 　　Good typography based layout and menu [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.handlewithlove.net/" target="_blank">Handle With Love</a></strong></p>
<p style="text-align: center;"><a href="http://www.handlewithlove.net/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_1.jpg" alt="Handle With Love" /></a></p>
<p>　　整洁和有组织的垂直导航。惊人的漂亮图片和颜色！</p>
<p><span id="more-912"></span><br />
<hr />
<p><strong><a href="http://weightshift.com/" target="_blank">Weightshift</a></strong></p>
<p style="text-align: center;"><a href="http://weightshift.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_2.jpg" alt="Weightshift" /></a></p>
<p>　　很酷的使用菜单导航，优雅！</p>
<hr />
<p><strong><a href="http://dontthrowbatteries.com/" target="_blank">Don’t throw Batteries</a></strong></p>
<p style="text-align: center;"><a href="http://dontthrowbatteries.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_3.jpg" alt="Don’t throw Batteries " /></a></p>
<p>　　优雅整洁的菜单</p>
<hr />
<p><strong><a href="http://fa-d.com/" target="_blank">FA Design</a></strong></p>
<p style="text-align: center;"><a href="http://fa-d.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_4.jpg" alt="FA Design " /></a></p>
<p>　　Another great example of typography based menu.</p>
<hr />
<p><strong><a href="http://albumartcollection.com/" target="_blank">Album Art Collection</a></strong></p>
<p style="text-align: center;"><a href="http://albumartcollection.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_5.jpg" alt="Album Art Collection " /></a></p>
<p>　　Amazing layout, navigation and menu.</p>
<hr />
<p><strong><a href="http://www.polyesterstudio.com/" target="_blank">Polyester Studio</a></strong></p>
<p style="text-align: center;"><a href="http://www.polyesterstudio.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_6.jpg" alt="Polyester Studio" /></a></p>
<p>　　Awesome colours with integrated menu and flow. It never gets boring.</p>
<hr />
<p><strong><a href="http://www.doopsuikerpoppies.be/index.php" target="_blank">Doopsuiker Poppies</a></strong></p>
<p style="text-align: center;"><a href="http://www.doopsuikerpoppies.be/index.php"><img src="http://pic004.cnblogs.com/news/201110/20111014_133216_7.jpg" alt="Doopsuiker Poppies" /></a></p>
<p>　　Pretty menu, nice flow and navigation.</p>
<hr />
<p><strong><a href="http://simpleasmilk.co.uk/" target="_blank">simpleasmilk.co.uk</a></strong></p>
<p style="text-align: center;"><a href="http://simpleasmilk.co.uk/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_8.jpg" alt="http://simpleasmilk.co.uk/" /></a></p>
<p>　　Good typography based layout and menu with really cool colors and nice flow.</p>
<hr />
<p><strong><a href="http://www.iwc.com/" target="_blank">IWC</a></strong></p>
<p style="text-align: center;"><a href="http://www.iwc.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_9.jpg" alt="IWC" /></a></p>
<p>　　Neat grid navigation layout with a graceful menu.</p>
<hr />
<p><strong><a href="http://www.princestreetfilms.com/" target="_blank">Prince Street Films</a></strong></p>
<p style="text-align: center;"><a href="http://www.princestreetfilms.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_10.jpg" alt="Prince Street Films" /></a></p>
<p>　　Pretty good layout, colors and typography.</p>
<hr />
<p><strong><a href="http://www.comicsanscriminal.com/" target="_blank">Comic Sans Criminal</a></strong></p>
<p style="text-align: center;"><a href="http://www.comicsanscriminal.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_11.jpg" alt="Comic Sans Criminal" /></a></p>
<p>　　Horizontal vertical, based on typography and a good color scheme.</p>
<hr />
<p><strong><a href="http://abovethefoldbook.com/" target="_blank">Above the Fold</a></strong></p>
<p style="text-align: center;"><a href="http://abovethefoldbook.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_12.jpg" alt="Above the Fold" /></a></p>
<p>　　Awesome vertical navigation. You can scroll it down or select an option at the menu — both ways it is good.</p>
<hr />
<p><strong><a href="http://www.accxmedia.com/" target="_blank">ACC Media</a></strong></p>
<p style="text-align: center;"><a href="http://www.accxmedia.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_13.jpg" alt="ACC Media" /></a></p>
<p>　　Great horizontal navigation totally based on images.</p>
<hr />
<p><strong><a href="http://www.futurefabric.co.uk/" target="_blank">Futurefabric</a></strong></p>
<p style="text-align: center;"><a href="http://www.futurefabric.co.uk/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_14.jpg" alt="Futurefabric" /></a></p>
<p>　　Simple structure with scroll based navigation and beautiful menu. Simplicity is the beauty.</p>
<hr />
<p><strong><a href="http://www.polargold.de/" target="_blank">polargold</a></strong></p>
<p style="text-align: center;"><a href="http://www.polargold.de/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_15.jpg" alt="polargold" /></a></p>
<p>　　Simply hover and then click the menu you wish to open. Simple and beautiful.</p>
<hr />
<p><strong><a href="http://www.helmy-bern.cz/" target="_blank">Helmy Bern</a></strong></p>
<p style="text-align: center;"><a href="http://www.helmy-bern.cz/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_16.jpg" alt="Helmy Bern " /></a></p>
<p>　　This website has a combo hover + dropdown, which is always interesting and cool.</p>
<hr />
<p><strong><a href="http://www.voltagead.com/" target="_blank">Voltage</a></strong></p>
<p style="text-align: center;"><a href="http://www.voltagead.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_17.jpg" alt="Voltage" /></a></p>
<p>　　Large typography that gets noticed and then it fades when you are not checking out the respective menu.</p>
<hr />
<p><strong><a href="http://ecoforms.com/" target="_blank">Ecoforms</a></strong></p>
<p style="text-align: center;"><a href="http://ecoforms.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_18.jpg" alt="Ecoforms" /></a></p>
<p>　　Pretty layout and colors. Use image slider or menu to navigate easily.</p>
<hr />
<p><strong><a href="http://www.keithcakes.com.au/" target="_blank">Keith Homemade Cakes</a></strong></p>
<p style="text-align: center;"><a href="http://www.keithcakes.com.au/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_19.jpg" alt="Keith Homemade Cakes" /></a></p>
<p>　　Beautiful layout and images with easy navigation.</p>
<hr />
<p><strong><a href="http://jstraining.de/" target="_blank">Javascript für Designer</a></strong></p>
<p style="text-align: center;"><a href="http://jstraining.de/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_20.jpg" alt="Javascript für Designer" /></a></p>
<p>　　Vertical navigation with amazing color scheme and forms.</p>
<hr />
<p><strong><a href="http://ednacional.com/" target="_blank">Ed Nacional</a></strong></p>
<p style="text-align: center;"><a href="http://ednacional.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_21.jpg" alt="Ed Nacional" /></a></p>
<p>　　Neat and clean layout with eye catching images and navigation.</p>
<hr />
<p><strong><a href="http://www.marcorotoli.com/" target="_blank">Marco Rotoli</a></strong></p>
<p style="text-align: center;"><a href="http://www.marcorotoli.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_22.jpg" alt="Marco Rotoli" /></a></p>
<p>　　Use the sliders, sideways and upside down, or menus for extremely easy navigation.</p>
<hr />
<p><strong><a href="http://www.makr.com/" target="_blank">Makr Carry Goods</a></strong></p>
<p style="text-align: center;"><a href="http://www.makr.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_23.jpg" alt="Makr Carry Goods" /></a></p>
<p>　　Extremely neat layout and navigation.</p>
<hr />
<p><strong><a href="http://www.pentagram.com/" target="_blank">Pentagram</a></strong></p>
<p style="text-align: center;"><a href="http://www.pentagram.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_24.jpg" alt="Pentagram" /></a></p>
<p>　　Navigate using the horizontal sliders, images or the dropdowns. Really nice.</p>
<hr />
<p><strong><a href="http://keenanwells.com/" target="_blank">Keenan Wells</a></strong></p>
<p style="text-align: center;"><a href="http://keenanwells.com/"><img src="http://pic004.cnblogs.com/news/201110/20111014_133217_25.jpg" alt="Keenan Wells" /></a></p>
<p>　　Great navigation. All you have to do is to choose what do you wish to see in the top right corner and then just go with the flow. A horizontal slider is also present to see previous projects.</p>
<hr />
<p><strong><a href="http://www.introzo.com/">TROZO GALLERY</a></strong></p>
<p style="text-align: center;"><a href="http://www.introzo.com/"><img title="TROZO GALLERY" src="http://pic004.cnblogs.com/news/201110/20111014_133218_26.jpg" alt="TROZO GALLERY" /></a></p>
<hr />
<p><strong><a href="http://www.biola.edu/undergrad/">Biola Undergrad</a></strong></p>
<p style="text-align: center;"><a href="http://www.biola.edu/undergrad/"><img title="Biola Undergrad" src="http://pic004.cnblogs.com/news/201110/20111014_133218_27.jpg" alt="Biola Undergrad" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/912.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 个漂亮的 jQuery 照片插件</title>
		<link>http://www.zhblog.net/archives/910.html</link>
		<comments>http://www.zhblog.net/archives/910.html#comments</comments>
		<pubDate>Fri, 14 Oct 2011 05:45:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程其他]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.zhblog.net/?p=910</guid>
		<description><![CDATA[本文向你介绍 7 款很漂亮的相片展示的 jQuery 插件，提供在线演示和免费下载。 1. 交互式相片桌面，使用 jQuery 和 CSS3 开发 Demo Download 　　2. 相册缩略图导航 Demo Download 　　3. 最小化的滑动展示相册 Demo Download 　　4. 独特的相册，使用 z-index 和 jQuery 开发 Demo Download 　　5. 宝丽来相片浏览 Demo Download 　　6. Photoshoot plug-in Demo Download 　　7. Revealing Slider Demo Download]]></description>
			<content:encoded><![CDATA[<p>本文向你介绍 7 款很漂亮的相片展示的 <a href="http://www.zhblog.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> 插件，提供在线演示和免费下载。</p>
<p>1. 交互式相片桌面，使用 jQuery 和 CSS3 开发</p>
<p><a title="Interactive Photo Desk with jQuery and CSS3" href="http://tympanus.net/Development/PhotoDesk/" target="_blank">Demo</a> <a title="Interactive Photo Desk with jQuery and CSS3" href="http://tympanus.net/codrops/2010/07/01/interactive-photo-desk/" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075453_1.jpg" rel="wp-prettyPhoto[g60]"><img title="interact" src="http://pic004.cnblogs.com/news/201110/20111014_075454_2.jpg" alt="interact" /><span id="more-910"></span></a></p>
<p>　　2. 相册缩略图导航</p>
<p><a title="Thumbnails Navigation Gallery with JQuery" href="http://tympanus.net/Tutorials/ThumbnailsNavigationGallery" target="_blank">Demo</a> <a title="Thumbnails Navigation Gallery with JQuery" href="http://tympanus.net/codrops/2010/07/29/thumbnails-navigation-gallery" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075454_3.jpg" rel="wp-prettyPhoto[g60]"><img title="sabastian" src="http://pic004.cnblogs.com/news/201110/20111014_075455_4.jpg" alt="sabastian" /></a></p>
<p>　　3. 最小化的滑动展示相册</p>
<p><a title="Minimalistic Slideshow Gallery" href="http://tympanus.net/Tutorials/MinimalisticSlideshowGallery" target="_blank">Demo</a> <a title="Minimalistic Slideshow Gallery" href="http://tympanus.net/codrops/2010/07/05/minimalistic-slideshow-gallery" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075455_5.jpg" rel="wp-prettyPhoto[g60]"><img title="minimalistic_slide" src="http://pic004.cnblogs.com/news/201110/20111014_075455_6.jpg" alt="minimalistic_slide" /></a></p>
<p>　　4. 独特的相册，使用 z-index 和 jQuery 开发</p>
<p><a title="Unique Gallery Using z-index and JQuery" href="http://demos.usejquery.com/03_z-index_gallery" target="_blank">Demo</a> <a title="Unique Gallery Using z-index and JQuery" href="http://usejquery.com/posts/3/create-a-unique-gallery-by-using-z-index-and-jquery" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075456_7.jpg" rel="wp-prettyPhoto[g60]"><img title="zindexandcss" src="http://pic004.cnblogs.com/news/201110/20111014_075456_8.jpg" alt="zindexandcss" /></a></p>
<p>　　5. 宝丽来相片浏览</p>
<p><a title="Polaroid photo viewer with CSS3 and JQuery" href="http://demo.marcofolio.net/polaroid_photo_viewer" target="_blank">Demo</a> <a title="Polaroid photo viewer with CSS3 and JQuery" href="http://www.marcofolio.net/webdesign/creating_a_polaroid_photo_viewer_with_css3_and_jquery.html" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075456_9.jpg" rel="wp-prettyPhoto[g60]"><img title="polaroid" src="http://pic004.cnblogs.com/news/201110/20111014_075457_10.jpg" alt="polaroid" /></a></p>
<p>　　6. Photoshoot plug-in</p>
<p><a title="Photoshoot plug-in" href="http://demo.tutorialzine.com/2010/02/photo-shoot-css-jquery/demo.html" target="_blank">Demo</a> <a title="Photoshoot plug-in" href="http://tutorialzine.com/2010/02/jquery-photoshoot-plugin" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075457_11.jpg" rel="wp-prettyPhoto[g60]"><img title="photoshoot_plugin" src="http://pic004.cnblogs.com/news/201110/20111014_075457_12.jpg" alt="photoshoot_plugin" /></a></p>
<p>　　7. Revealing Slider</p>
<p><a title="Revealing Slider" href="http://css-tricks.com/examples/RevealingPhotoSlider2" target="_blank">Demo</a> <a title="Revealing Slider" href="http://css-tricks.com/revealing-photo-slider" target="_blank"> Download</a></p>
<p style="text-align: center;"><a href="http://pic004.cnblogs.com/news/201110/20111014_075457_13.jpg" rel="wp-prettyPhoto[g60]"><img title="revealing_slider" src="http://pic004.cnblogs.com/news/201110/20111014_075458_14.jpg" alt="revealing_slider" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhblog.net/archives/910.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

