<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 20多个漂亮的使用jQuery交互的网站设计欣赏</title>
	<atom:link href="http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/</link>
	<description>申力军的博客</description>
	<lastBuildDate>Fri, 11 May 2012 02:22:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: 申</title>
		<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/comment-page-1/#comment-4401</link>
		<dc:creator>申</dc:creator>
		<pubDate>Sat, 13 Feb 2010 03:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://kiya.cn/?p=1367#comment-4401</guid>
		<description>那个链接就是demo啦。你点那个tomorrow。this month 什么的</description>
		<content:encoded><![CDATA[<p>那个链接就是demo啦。你点那个tomorrow。this month 什么的</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: afing</title>
		<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/comment-page-1/#comment-4277</link>
		<dc:creator>afing</dc:creator>
		<pubDate>Wed, 10 Feb 2010 05:28:19 +0000</pubDate>
		<guid isPermaLink="false">http://kiya.cn/?p=1367#comment-4277</guid>
		<description>访问了。。。，啥米？... 能给个demo偶看看吗。</description>
		<content:encoded><![CDATA[<p>访问了。。。，啥米？&#8230; 能给个demo偶看看吗。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 申</title>
		<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/comment-page-1/#comment-4273</link>
		<dc:creator>申</dc:creator>
		<pubDate>Wed, 10 Feb 2010 02:53:16 +0000</pubDate>
		<guid isPermaLink="false">http://kiya.cn/?p=1367#comment-4273</guid>
		<description>恩。我也用过这个插件开发过东西。的确是不错 http://demo.meeplace.com/event/</description>
		<content:encoded><![CDATA[<p>恩。我也用过这个插件开发过东西。的确是不错 <a href="http://demo.meeplace.com/event/" rel="nofollow">http://demo.meeplace.com/event/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: afing</title>
		<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/comment-page-1/#comment-4258</link>
		<dc:creator>afing</dc:creator>
		<pubDate>Tue, 09 Feb 2010 15:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://kiya.cn/?p=1367#comment-4258</guid>
		<description>谢谢了哈，我目前就想到了整合到一起，但考虑到资源问题，所以在寻找新的解决方案。随便介绍个，用ScrollTo插件可以很方便。。。</description>
		<content:encoded><![CDATA[<p>谢谢了哈，我目前就想到了整合到一起，但考虑到资源问题，所以在寻找新的解决方案。随便介绍个，用ScrollTo插件可以很方便。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 申</title>
		<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/comment-page-1/#comment-4251</link>
		<dc:creator>申</dc:creator>
		<pubDate>Tue, 09 Feb 2010 06:56:20 +0000</pubDate>
		<guid isPermaLink="false">http://kiya.cn/?p=1367#comment-4251</guid>
		<description>Hi, 用Javascript控制元素起到滑动效果的方法有很多。
一种比较常用的是，一个块级DIV具有overflow:hidden属性，具有position:relative供内部的绝对定位DIV使用，也定义了宽和高，里面有一个装有几个横排或者竖排的图像的一个DIV，这个DIV具有position:absolute属性，则通过jQuery产生动画函数.animate()就可以控制其left的递增或者递减，达到看似内部图像滚动的效果。
类似的方法是把所有图片整合在同一张图上，通过jQuery的animate来控制其background-position来达到滚动的。
还有很多方法，你可以在上面的例子中，查看一下其JS的代码来一探究竟。或者结合Firebug可以看到其页面元素的摆放和变化。</description>
		<content:encoded><![CDATA[<p>Hi, 用Javascript控制元素起到滑动效果的方法有很多。<br />
一种比较常用的是，一个块级DIV具有overflow:hidden属性，具有position:relative供内部的绝对定位DIV使用，也定义了宽和高，里面有一个装有几个横排或者竖排的图像的一个DIV，这个DIV具有position:absolute属性，则通过jQuery产生动画函数.animate()就可以控制其left的递增或者递减，达到看似内部图像滚动的效果。<br />
类似的方法是把所有图片整合在同一张图上，通过jQuery的animate来控制其background-position来达到滚动的。<br />
还有很多方法，你可以在上面的例子中，查看一下其JS的代码来一探究竟。或者结合Firebug可以看到其页面元素的摆放和变化。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: afing</title>
		<link>http://slj.me/2009/12/20-more-beautiful-interactive-website-design-using-jquery/comment-page-1/#comment-4242</link>
		<dc:creator>afing</dc:creator>
		<pubDate>Mon, 08 Feb 2010 15:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://kiya.cn/?p=1367#comment-4242</guid>
		<description>都很赞！请教博主个问题，左右平滑 页面是如何做到隐藏的</description>
		<content:encoded><![CDATA[<p>都很赞！请教博主个问题，左右平滑 页面是如何做到隐藏的</p>
]]></content:encoded>
	</item>
</channel>
</rss>

