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

<channel>
	<title>知更鸟 &#187; Web前端</title>
	<atom:link href="http://zmingcx.com/category/webdesign/feed" rel="self" type="application/rss+xml" />
	<link>http://zmingcx.com</link>
	<description>崇尚专注　追求极致</description>
	<lastBuildDate>Thu, 29 Jul 2010 02:42:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://zmingcx.com/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>使用DD_belatedPNG让IE6支持PNG透明图片</title>
		<link>http://zmingcx.com/dd_belatedpng-solve-png-images-under-ie6-transparent-application-tutorial.html</link>
		<comments>http://zmingcx.com/dd_belatedpng-solve-png-images-under-ie6-transparent-application-tutorial.html#comments</comments>
		<pubDate>Fri, 02 Jul 2010 07:49:40 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[DD_belatedPNG]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2376</guid>
		<description><![CDATA[众所周知IE6不支持透明的PNG图片,而PNG图片在Web设计方面表现力上，具有其它图形格式所达不到的效果，IE6这一致命缺陷极大地限制了Web设计的创意发挥。虽然解决IE6的透明PNG的方法也很多,从使用IE特有的滤镜或是e­xpression,再到javascript+透明 GIF替代.但是这些方法都有一个缺点,就是不支持CSS中backgrond-position与background-repeat属性。而使用DD_belatedPNG.js可完美的解决IE6下PNG图片透明问题，并且支持backgrond-position与background-repeat. 这是其他方法所不具备的，同时DD_belatedPNG还支持a:hover属性,以及&#60;img&#62;。我制作的热点新闻主题，就加入了DD_belatedPNG处理导航PNG透明图片,使其在不同浏览器下保持相同的外观。 使用方法： 首先下载JS文件 0.0.8a.js (未压缩版本) 0.0.8a-min.js (压缩版) 英文说明 之后在页面中引用代码： &#60;!–[if IE 6]&#62; &#60;script type=”text/javascript” src=”下载下来的JS路径”&#62;&#60;/script&#62; &#60;script&#62; DD_belatedPNG.fix(‘CSS选择器, 应用类型’); &#60;/script&#62; &#60;![endif]–&#62; 引用函数是 DD_belatedPNG.fix() , 括号里分别填写应用PNG的CSS选择器（可使用ID选择器和类选择器）和应用类型（分为img和background两种）。 如DD_belatedPNG.fix(‘#box-one, img’) 或者 DD_belatedPNG.fix(‘.header, background’) 等。 这些可以简写成 DD_belatedPNG.fix(‘#box-one, .header, img,background’);  。 更多选择器的如 DD_belatedPNG.fix(‘#box-one, .header,#footer,.box-two a:hover, img,background’);  等等。 另外，为解决IE6下背景图闪烁，可以在页面中添加如下脚本 &#60;!–[if IE 6]&#62; &#60;script type=”text/javascript”&#62; // &#60;![CDATA[ if((window.navigator.appName.toUpperCase().indexOf("MICROSOFT")&#62;=0)&#38;&#38;(document.execCommand)) try{ document.execCommand("BackgroundImageCache", false, [...]]]></description>
			<content:encoded><![CDATA[<p>众所周知IE6不支持透明的PNG图片,而PNG图片在Web设计方面表现力上，具有其它图形格式所达不到的效果，IE6这一致命缺陷极大地限制了Web设计的创意发挥。虽然解决IE6的透明PNG的方法也很多,从使用IE特有的滤镜或是e­xpression,再到javascript+透明 GIF替代.但是这些方法都有一个缺点,就是不支持<span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">CSS</a></span>中backgrond-position与background-repeat属性。而使用DD_belatedPNG.js可完美的解决IE6下PNG图片透明问题，并且支持backgrond-position与background-repeat. 这是其他方法所不具备的，同时DD_belatedPNG还支持a:hover属性,以及&lt;img&gt;。我制作的<span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/httpzmingcx-compost-apple-style-theme-hot-news.html" rel="nofollow" target="_blank">热点新闻主题</a></span>，就加入了DD_belatedPNG处理导航PNG透明图片,使其在不同浏览器下保持相同的外观。</p>
<h3><strong>使用方法：</strong></h3>
<p>首先下载JS文件</p>
<p><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/DD_belatedPNG_0.0.8a.js">0.0.8a.js (未压缩版本)</a><br />
<a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/DD_belatedPNG_0.0.8a-min.js">0.0.8a-min.js (压缩版)</a></p>
<p><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/"><strong>英文说明</strong></a></p>
<p>之后在页面中引用代码：</p>
<p><code>&lt;!–[if IE 6]&gt;<br />
&lt;script type=”text/javascript” src=”下载下来的JS路径”&gt;&lt;/script&gt;<br />
&lt;script&gt;<br />
DD_belatedPNG.fix(‘CSS选择器, 应用类型’);<br />
&lt;/script&gt;<br />
&lt;![endif]–&gt;</code></p>
<p>引用函数是 DD_belatedPNG.fix() , 括号里分别填写应用PNG的CSS选择器（可使用ID选择器和类选择器）和应用类型（分为img和background两种）。</p>
<p>如DD_belatedPNG.fix(‘#box-one, img’) 或者 DD_belatedPNG.fix(‘.header, background’) 等。</p>
<p>这些可以简写成 DD_belatedPNG.fix(‘#box-one, .header, img,background’);  。</p>
<p>更多选择器的如 DD_belatedPNG.fix(‘#box-one, .header,#footer,.box-two a:hover, img,background’);  等等。</p>
<p>另外，为解决IE6下背景图闪烁，可以在页面中添加如下脚本</p>
<p><code>&lt;!–[if IE 6]&gt;<br />
&lt;script type=”text/javascript”&gt;<br />
// &lt;![CDATA[<br />
if((window.navigator.appName.toUpperCase().indexOf("MICROSOFT")&gt;=0)&amp;&amp;(document.execCommand))<br />
try{<br />
document.execCommand("BackgroundImageCache", false, true);<br />
}<br />
catch(e){}<br />
// ]]&gt;<br />
&lt;/script&gt;<br />
&lt;![endif]–&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/dd_belatedpng-solve-png-images-under-ie6-transparent-application-tutorial.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery滑动显示制作教程</title>
		<link>http://zmingcx.com/jquery-slide-show-production-tutorial.html</link>
		<comments>http://zmingcx.com/jquery-slide-show-production-tutorial.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 04:04:40 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jQuery教程]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2329</guid>
		<description><![CDATA[I&#8217;m writing this tutorial in an Airport, heading back to my home country for a short holiday. It was a long day and had a farewell lunch with my fellow colleague. He got a better job offer, resigned and moved on. Well, that&#8217;s life, had a great time working with him accross different projects, no [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing this tutorial in an Airport, heading back to my home  country for a short holiday. It was a long day and had a farewell lunch  with my fellow colleague. He got a better job offer, resigned and moved  on. Well, that&#8217;s life, had a great time working with him accross  different projects, no doubt about it, I learnt heaps of stuff from him.  I&#8217;m pretty sure I&#8217;ll miss his daily quotes, jokes and whinging.</p>
<p>Alright, let&#8217;s get into the tutorial</p>
<p>This time, we are going to make a custom content slider. I  implemented this in my recent project and I&#8217;m pretty happy about it. My  colleague spiced it up a little bit with some nice buttons. The way it  works is quite simple,  we will have a UL list with 3 buttons and each  of the button has a link with a reference to the right panel. How it  scroll to the correct panel? It uses <span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">jQuery</a></span> scroll-To plugin. Basically  you just have to pass the ID of the panel to the scroll-To plugin, and  it will sroll the content to the correct position.</p>
<p style="text-align: center;">For more information about the plugin, please visit the <a rel="external" href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html">scrollTo plugin website</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8906918"><img class="aligncenter" src="http://i3.6.cn/cvbnm/02/2e/8a/b9e1fc01ab41e0069c5093a1916b4d61.jpg" alt="" /></a></p>
<h2>1. HTML</h2>
<p>HTML is a little bit long this time. Basically, it has two sections:</p>
<ul>
<li>UL List: This is the list of buttons, you can add as many as you  want, or style the layout the way you want.</li>
<li>Slider: Slider is where we put all the content for the panels, in  this case, we have 3 panels with unique ID panel-1, panel-2 and panel-3.  We hide the panel with overflow hidden set in the Mask Div.</li>
</ul>
<p><code>&lt;div id="hero-slider"&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href="#" rel="#panel-1"&gt;Item 1&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#" rel="#panel-2"&gt;Item 2&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#" rel="#panel-3"&gt;Item 3&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;div&gt;<br />
&lt;div&gt;<br />
&lt;div id="panel-1"&gt;<br />
&lt;h2&gt;Title 1&lt;/h2&gt;<br />
&lt;p&gt;Paragraph&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;div id="panel-2"&gt;<br />
&lt;h2&gt;Title 2&lt;/h2&gt;<br />
&lt;p&gt;Paragraph&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;div id="panel-3"&gt;<br />
&lt;h2&gt;Title 3&lt;/h2&gt;<br />
&lt;p&gt;Paragraph&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt; &lt;!-- .mask --&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;/div&gt; &lt;!-- #hero-slider --&gt;</code><br />
2. <span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">CSS</a></span></p>
<p>The only tricky part of the CSS would be the mask. You have to make sure it has overflow set to hidden to hide panels. Also, the dimension of the panel and mask must be the same.</p>
<blockquote><p>#hero-slider {<br />
text-align:left;<br />
background-color:#efefef;<br />
border:1px solid #ccc; width:450px;<br />
-moz-border-radius:10px;<br />
-webkit-border-radius:10px;<br />
margin:0 auto;<br />
font-family:arial;<br />
}</p>
<p>#hero-slider .mask {<br />
float:left;<br />
width:300px;<br />
height:280px;<br />
margin:15px 0 0 10px;<br />
overflow:hidden;<br />
}</p>
<p>#hero-slider .panel {<br />
width:300px;<br />
height:280px;<br />
text-align:left;<br />
}</p>
<p>#hero-slider ul {<br />
margin:0;<br />
padding:15px 15px 0 15px;<br />
list-style:none;<br />
float:left;<br />
border-right:1px solid #dedede;<br />
height:285px;<br />
}</p>
<p>#hero-slider ul li {<br />
margin:10px 0;<br />
}</p>
<p>#hero-slider ul a {<br />
outline:none;<br />
text-decoration: underline;<br />
display:block;<br />
width:75px;<br />
height:74px;<br />
text-indent:-999em;<br />
}</p>
<p>#hero-slider a {<br />
background: url(button.png) no-repeat 0 0;<br />
}</p>
<p>#hero-slider ul a.active {<br />
background-position: -75px;<br />
}</p>
<p>.panel h2 {<br />
padding:15px 0 0 0;<br />
color:#0058a9;<br />
}</p>
<p>.panel p {<br />
color:#666;<br />
}</p>
<p>.clear {clear:both}</p></blockquote>
<p>3. Javascript</p>
<p>Javascript is short and simple, I have added comments to explain every line of the javascript</p>
<blockquote><p>//append click event to the UL list anchor tag<br />
$(&#8216;#hero-slider ul a&#8217;).click(function () {<br />
//reset all the items<br />
$(&#8216;#hero-slider ul a&#8217;).removeClass(&#8216;active&#8217;);</p>
<p>//set current item as active<br />
$(this).addClass(&#8216;active&#8217;);</p>
<p>//scroll it to the right position<br />
$(&#8216;.mask&#8217;).scrollTo($(this).attr(&#8216;rel&#8217;), 300);</p>
<p>//disable click event<br />
return false;</p>
<p>});</p></blockquote>
<p style="text-align: center;"><strong><a href="http://www.queness.com/resources/html/slidercontent/index.html">演示</a>| <a href="http://www.queness.com/resources/archives/jQuery-slidercontent.zip">下载</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/jquery-slide-show-production-tutorial.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10个非常棒的HTML5、CSS和Javascript特效展</title>
		<link>http://zmingcx.com/10-is-terrific-for-html5s-css-and-javascript-effects-show.html</link>
		<comments>http://zmingcx.com/10-is-terrific-for-html5s-css-and-javascript-effects-show.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 03:57:26 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2326</guid>
		<description><![CDATA[虽然我并没有真正的去学习和了解HTML5的功能,但是它已经很火了,现在我甚至无法避免。为此需要一段时间来熟习和了解它。这其中我认为苹果公司所起的作用非常大。苹果的iPad刺激接受了HTML5 兴起。虽然我还没有iPad，因为我认为我不需要它。回到HTML5， HTML5改变了游戏,网络的发展,这太令人兴奋了。收集了10个的html5、CSS和javascript效果展示,一起来看看html5的魅力吧! Blob Cute little round shape character. It uses HTML5 canvas plus javascript to create such cool animation and interactivity. Bubble Generate colorful bubbles using HTML5 and of course with a magic touch of javascript. jParallax Awesome jParallax. I have been wanted to use this in my projects, but still haven&#8217;t got the [...]]]></description>
			<content:encoded><![CDATA[<p>虽然我并没有真正的去学习和了解HTML5的功能,但是它已经很火了,现在我甚至无法避免。为此需要一段时间来熟习和了解它。这其中我认为苹果公司所起的作用非常大。苹果的iPad刺激接受了HTML5 兴起。虽然我还没有iPad，因为我认为我不需要它。回到HTML5， HTML5改变了游戏,网络的发展,这太令人兴奋了。收集了10个的html5、<span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">CSS</a></span>和javascript效果展示,一起来看看html5的魅力吧!</p>
<p><a href="http://www.blobsallad.se/">Blob</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913355"><img src="http://i3.6.cn/cvbnm/e9/b3/4f/6a8777c993f842c7bb13bf5916325d61.jpg" alt="" /></a></p>
<p>Cute little round shape character. It uses HTML5 canvas plus javascript to create such cool animation and interactivity.</p>
<p><a href="http://3.paulhamill.com/node/39">Bubble</a></p>
<p><a href="http://tu.6.cn/pic/show-new/id/8913327"><img src="http://i3.6.cn/cvbnm/09/e3/97/77d70527574af8a7dc16a4b53a7374a2.jpg" alt="" /></a></p>
<p>Generate colorful bubbles using HTML5 and of course with a  magic touch of javascript.</p>
<p><a href="http://webdev.stephband.info/parallax_demos.html">jParallax</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913609"><img src="http://i3.6.cn/cvbnm/14/57/a0/2dd57cb7d864cb176c5798db6e053741.jpg" alt="" /></a><br />
Awesome jParallax. I have been wanted to use this in my projects, but still haven&#8217;t got the chance yet. It&#8217;s a plugin and it&#8217;s free.</p>
<p><a href="http://js-fireworks.appspot.com/">Firework</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913627"><img src="http://i3.6.cn/cvbnm/9b/de/5e/2efffe8c105785d570065fa61a40f687.jpg" alt="" /></a><br />
Never thought we can make firework with Javascript and html5.</p>
<p><a href="http://www.addyosmani.com/resources/canvasphoto/">Canvas Photo</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913661"><img src="http://i3.6.cn/cvbnm/52/17/a0/3dbae607c6b83283041f356ef67d23be.jpg" alt="" /></a><br />
Create polaroid photo effect with HTML5 canvas. It also come with the export tool.</p>
<p><a href="http://www.apple.com/html5/showcase/video/">Video showcase from  Apple</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913662"><img src="http://i3.6.cn/cvbnm/d9/23/6e/0d0807af088d3a681ab27b075f614998.jpg" alt="" /></a><br />
Apple has a sweet demonstration of video masking, scaling and changing perspective of the video.</p>
<p><a href="http://www.apple.com/html5/showcase/gallery/">Photo Gallery</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913703"><img src="http://i3.6.cn/cvbnm/a3/19/70/4283504723ee2e9b1bb14a785903c041.jpg" alt="" /></a><br />
Another awesome demonstration. You can change the layout of the photo gallery and it has a nice blur effect.</p>
<p><a href="http://www.feedtank.com/labs/html_canvas/">Particle Animation</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913705"><img src="http://i3.6.cn/cvbnm/b9/18/c3/ed2302b293da8421a7d4a4049b1314ef.jpg" alt="" /></a><br />
Using 300 sprites to spell out the word. It&#8217;s the demonstration of canvas particle animation.</p>
<p><a href="http://tomtheisen.com/spread/">Spread</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913731"><img src="http://i3.6.cn/cvbnm/c6/fa/3d/8ec35fe0d9efb4ef9fafd31a1d8550e7.jpg" alt="" /></a></p>
<p><a href="http://www.craftymind.com/factory/html5video/CanvasVideo.html">Block  based destruction of HTML5 Canvas Video</a><br />
<a href="http://tu.6.cn/pic/show-new/id/8913732"><img src="http://i3.6.cn/cvbnm/5b/fe/bb/bdedf3c767c6aeec9980af3f1c4977ed.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/10-is-terrific-for-html5s-css-and-javascript-effects-show.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>42个不容错过的实用jQuery的教程</title>
		<link>http://zmingcx.com/42-do-not-miss-the-practical-tutorials-jquery.html</link>
		<comments>http://zmingcx.com/42-do-not-miss-the-practical-tutorials-jquery.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 03:42:17 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jQuery教程]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2322</guid>
		<description><![CDATA[jQuery是一个了不起的javascript的框架。这42个实用jQuery的教程，包括不同设计元素,垂直菜单，手风琴，切换内容，滑动，画廊等，绝对不容错！希望对你学习jQuery有所帮助。 jQuery Moving Tab and Sliding Content Tutorial &#124; Demo Learn how to build a lava lamp tab and sliding content all together with just simple jQuery code. This script is good for sidebar that display recent posts, comments and community news. Learn How to Use Cookie with Javascript &#124; Demo Cookie is very useful [...]]]></description>
			<content:encoded><![CDATA[<p><span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">jQuery</a></span>是一个了不起的javascript的框架。这42个实用jQuery的教程，包括不同设计元素,垂直菜单，手风琴，切换内容，滑动，画廊等，绝对不容错！希望对你学习jQuery有所帮助。</p>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/655/jquery-moving-tab-and-sliding-content-tutorial">jQuery  Moving Tab and Sliding Content Tutorial</a> | <a href="http://www.queness.com/resources/html/movetab/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/1.jpg" alt="" width="450" height="200" /><br />
Learn how to build a lava lamp tab and sliding content all  together with just simple jQuery code. This script is good for sidebar  that display recent posts, comments and community news.</li>
<li> <a href="http://www.queness.com/post/666/weekly-tips-learn-how-to-use-cookie-with-javascript">Learn  How to Use Cookie with Javascript</a> | <a href="http://www.queness.com/resources/html/cookie/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/2.jpg" alt="" width="450" height="200" /><br />
Cookie is very useful to remember selected menu item and other  data. Learn how to manipulate cookie with javascript. A simple  implementation of menu with cookie support is uncluded in this article  and also functions that will make your life easier.</li>
<li> <a href="http://www.queness.com/post/685/jquery-flipping-menu-tutorial-using-backgroundposition-plugin">jQuery  Flipping Menu Tutorial using backgroundPosition Plugin</a> | <a href="http://www.queness.com/resources/html/flipping/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/3.jpg" alt="" width="450" height="200" /><br />
Learn how to create a simple, but elegant menu by animating  background with jquery backgroundPosition plugin. It&#8217;s simple, but the  effect is really good.</li>
<li> <a href="http://www.queness.com/post/710/clean-and-attractive-jquery-vertical-menu-tutorial">Clean  and Attractive jQuery Vertical Menu Tutorial</a> | <a href="http://www.queness.com/post/3674/21-useful-and-practical-jquery-tutorials-you-might-have-missed">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/4.jpg" alt="" width="450" height="200" /><br />
Check out this jQuery Vertical Menu. It uses jQuery Animate and  Easing to create a simple and attractive lava effect.</li>
<li> <a href="http://www.queness.com/post/741/a-simple-and-beautiful-jquery-accordion-tutorial">A  Simple and Beautiful jQuery Accordion Tutorial</a> | <a href="http://www.queness.com/resources/html/accordion/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/5.jpg" alt="" width="450" height="200" /><br />
Learn how to create the well-known javascript accordion with the  most minimal amount of html, <span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">CSS</a></span>, javascript code and of course, with a  beautiful interface as well.</li>
<li> <a href="http://www.queness.com/post/762/create-a-nice-looking-floating-menu-with-jquery-easing">Create  a Good Looking Floating Menu with jQuery Easing</a> | <a href="http://www.queness.com/resources/html/floatmenu/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/6.jpg" alt="" width="450" height="200" /><br />
This tutorial will show you how to create a horizontal menu with  floating effect by using jquery.easing and jquery animate function. It&#8217;s  a simple effect but the final product is quite nice looking and  elegant.</li>
<li> <a href="http://www.queness.com/post/844/create-a-thumbnail-with-fading-caption-using-jquery">Create  a Thumbnail with Fading Caption Using jQuery</a> | <a href="http://www.queness.com/resources/html/thumbnail/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/7.jpg" alt="" width="450" height="200" /><br />
This tutorial will show you how to create a fading caption for  your thmbnail gallery. It uses jQuery framework and CSS to create this  transparent and fading effect.</li>
<li> <a href="http://www.queness.com/post/923/create-a-simple-infinite-carousel-with-jquery">Create  a Simple Infinite Carousel with jQuery</a> | <a href="http://www.queness.com/images/btnDemonstration.gif" rel="shadowbox[post-2322];player=img;">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/8.jpg" alt="" width="450" height="200" /><br />
This tutorial will show you how to create a infinite carousel  script with jQuery. It also have a simple autorotate script that will  rotate items in the carousel.</li>
<li> <a href="http://www.queness.com/post/966/jquery-drop-down-menu-for-rss-subscription-tutorial">jQuery  Drop Down Menu for RSS Subscription Tutorial</a> | <a href="http://www.queness.com/resources/html/dropdown/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/9.jpg" alt="" width="450" height="200" /><br />
Learn how to create a simple drop down list with animation effect  in this tutorial. This drop down menu can be easily skin and customize.</li>
<li> <a href="http://www.queness.com/post/1047/easy-to-style-jquery-drop-down-menu-tutorial">Easy  to Style jQuery Drop Down Menu Tutorial</a> | <a href="http://www.queness.com/resources/html/dropdownmenu/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/10.jpg" alt="" width="450" height="200" /><br />
Drop down menu is always the most famous solution in navigation  menu. This tutorial will show us how to create one and also to keep it  as simple as possible so that it can be styled easily.</li>
<li> <a href="http://www.queness.com/post/1306/create-a-vertical-sliding-bar-thumbnail-effect-with-jquery">Create  a Vertical Sliding Bar Thumbnail Effect with jQuery</a> | <a href="http://www.queness.com/resources/html/bar/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/11.jpg" alt="" width="450" height="200" /><br />
A revisit from my previous famous tutorial, I have changed the  transition to something different. 4 bars will be sliding up and down  and reveal the description of the thumbanil hidden underneath.</li>
<li> <a href="http://www.queness.com/post/1450/jquery-photo-slide-show-with-slick-caption-tutorial-revisited">jQuery  Photo Slide Show with Slick Caption Tutorial Revisited</a> | <a href="http://www.queness.com/resources/html/slideshow2/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/12.jpg" alt="" width="450" height="200" /><br />
A revisit from my previous famous Image slide show with  semi-transparent caption jQuery tutorial. I have fixed bugs and enhanced  this image slide show to be more efficient, w3c compliant and more  semantic. Quick! Learn how to create a slide show with cool sliding  caption effect using jQuery.</li>
<li> <a href="http://www.queness.com/post/1696/create-a-beautiful-looking-custom-dialog-box-with-jquery-and-css3">Create  a Beautiful Looking Custom Dialog Box With jQuery and CSS3</a> | <a href="http://www.queness.com/resources/html/project/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/13.jpg" alt="" width="450" height="200" /><br />
This custom dialog box is one of the scripts in that website and I  think it will be quite useful for all of us. The reason I have this  custom dialog box is to overcome the inconsistencies across different  browsers. It uses CSS3 to style everything and it looks really nice!</li>
<li> <a href="http://www.queness.com/post/1743/create-a-fast-and-simple-toggle-view-content-with-jquery">Create  a Fast and Simple Toggle View Content with jQuery</a> | <a href="http://www.queness.com/post/1743/create-a-fast-and-simple-toggle-view-content-with-jquery">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/14.jpg" alt="" width="450" height="200" /><br />
This script is fairly straight forward. What it does is using the  UL list and allow user to toggle to display the content of LI items.  This is a really useful user interface feature that it helps designers  to save space and build a less complicated user interface.</li>
<li> <a href="http://www.queness.com/post/1854/the-easiest-javascript-sliding-door-effect-tutorial-with-jquery">Easiest  Javascript Sliding Door Effect Tutorial with jQuery</a> | <a href="http://www.queness.com/resources/html/door/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/15.jpg" alt="" width="450" height="200" /><br />
This is my fouth tutorial about thumbnail effect. This time is the  well known sliding door effect that slide the top layer to top, bottom,  left or right direction to reveal the content underneath.</li>
<li> <a href="http://www.queness.com/post/2294/useful-and-practical-jquery-image-tooltips-tutorial">Useful  and Practical jQuery Image ToolTips Tutorial</a> | <a href="http://www.queness.com/resources/html/imgtooltip/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/16.jpg" alt="" width="450" height="200" /><br />
In this tutorial, we will learn how to create a thumbnail image  tooltip with jQuery. It displays a tooltip image when user hover on the  thumbnail with fadein and out effect. it&#8217;s a useful script for your  website.</li>
<li> <a href="http://www.queness.com/post/2607/create-background-scrolling-effect-with-jquery">Create  Background Scrolling Effect with jQuery</a> | <a href="http://www.queness.com/resources/html/bgscroll/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/17.jpg" alt="" width="450" height="200" /><br />
In this tutorial, we&#8217;re not only go through how to make it, we  will have it in plugin as well which allow user to customize the speed  of the movement and direction (vertically, horizontally and diagonally).</li>
<li> <a href="http://www.queness.com/post/3036/create-a-custom-jquery-image-gallery-with-jcarousel">Create  a Custom jQuery Image Gallery with jCarousel</a> | <a href="http://www.queness.com/resources/html/jcarousel/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/18.jpg" alt="" width="450" height="200" /><br />
Alright fellow web designers and developers. We are going to do  something a little bit more hardcore this time. There are heaps of  jQuery plugins out there, but it&#8217;s hard to find something that suit us.  So, this tutorial will teach you how to be creative and create a  customize plugin.</li>
<li> <a href="http://www.queness.com/post/3157/create-a-simple-interactive-css-button-with-jquery">Create  a Simple Interactive CSS Button with jQuery</a> | <a href="http://www.queness.com/post/3674/21-useful-and-practical-jquery-tutorials-you-might-have-missed">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/19.jpg" alt="" width="450" height="200" /><br />
Alright, in this tutorial we will be creating a button that will  replace the default submit button. It will be degrade gracefully,  animated and easy to implement.</li>
<li> <a href="http://www.queness.com/post/3470/simplest-jquery-spotlight-effect-tutorial">Simplest  jQuery jQuery Spotlight Effect Tutorial</a> | <a href="http://www.queness.com/resources/html/spotlight/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/20.jpg" alt="" width="450" height="200" /><br />
This tutorial will guide you how to build a spotlight effect with  caption. I have seen someone use this technique before, I think that&#8217;s  cool, so I decided to spice thing up a little bit by adding a caption  into it.</li>
<li> <a href="http://www.queness.com/post/3669/create-a-custom-content-slider-with-jquery">Create  a Custom Content Slider with jQuery</a> | <a href="http://www.queness.com/resources/html/slidercontent/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tuts2/21.jpg" alt="" width="450" height="200" /><br />
In this tutorial, we are going to create a custom content slider.  The concept behind it is pretty simple, when you click on a button, it  uses jQuery scroll-To plugin to scoll the content and display the right  content.</li>
</ul>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/68/navigation-list-menujquery-animate-effect-tutorial">Navigation  List Menu with Nudging Effect</a><br />
<img src="http://www.queness.com/resources/images/tutorials/nudge.gif" alt="Navigation List Menu with Nudging Effect" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/256/horizontal-scroll-menu-with-jquery-tutorial">Vertical  Scroll Menu</a> | <a href="http://www.queness.com/resources/html/scrollmenu/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/scroll.gif" alt="Vertical Scroll Menu" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/411/create-an-attractive-jquery-menu-with-fadein-and-fadeout-effect">Menu  with Fadein and Fadeout Effect</a> | <a href="http://www.queness.com/resources/html/fadein/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/fade.gif" alt="Menu with Fadein and Fadeout Effect" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/530/simple-lava-lamp-menu-tutorial-with-jquery">Simple  Lava Lamp Menu</a> | <a href="http://www.queness.com/resources/html/lava/style.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/lava.gif" alt="Simple Lava Lamp Menu" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/556/jquery-horizontal-tooltips-menu-tutorials">Horizontal  Tooltips Menu</a> | <a href="http://www.queness.com/resources/html/tooltipmenu/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/menu.gif" alt="Horizontal Tooltips Menu" width="450" height="200" /></li>
</ul>
<h2>Photo Gallery/Thumbnail Gallery</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/152/simple-jquery-image-slide-show-with-semi-transparent-caption">Image  Slide Show with Semi-Transparent Caption</a> | <a href="http://www.queness.com/resources/html/slideshow/jQuery-slideshow.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/gallery.gif" alt="Image Slide Show with Semi-Transparent Caption" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/443/jquery-image-gallerynews-slider-with-caption-tutorial">Image  Gallery/News Slider with Caption</a> | <a href="http://www.queness.com/resources/html/newsslider/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/slider.gif" alt="Image Gallery/News Slider with Caption" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/484/create-a-thumbnail-gallery-with-slick-heading-and-caption-effect-with-jquery">Thumbnail  Gallery with Slick Heading and Caption Effect</a> | <a href="http://www.queness.com/resources/html/caption/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/thumbnail.gif" alt="Thumbnail Gallery with Slick Heading and Caption Effect" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/590/jquery-thumbnail-with-zooming-image-and-fading-caption-tutorial">Thumbnail  with Zooming and Fading Caption Effect</a> | <a href="http://www.queness.com/resources/html/zoomthumbnail/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/zoom.gif" alt="Thumbnail with Zooming and Fading Caption Effect" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/620/create-a-stunning-sliding-door-effect-with-jquery">Four  Corners Sliding Door Effect</a> | <a href="http://www.queness.com/resources/html/slicing/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/door.gif" alt="Four Corners Sliding Door Effect" width="450" height="200" /></li>
</ul>
<h2>Tooltips</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/92/create-a-simple-cssjavascript-tooltip-with-jquery">Simple  CSS + Javascript Tooltip</a> | <a href="http://www.queness.com/resources/html/tooltip/jQuery-tooltip-queness.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/tooltips.gif" alt="Simple CSS + Javascript Tooltip" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery">Custom  Digg Post Sharing Tool</a> | <a href="http://www.queness.com/resources/html/shareit/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/digg.gif" alt="Custom Digg Post Sharing Tool" width="450" height="200" /></li>
</ul>
<h2>Dock</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/241/dock-content-tutorial-with-jquery-and-jquery-easing-plugin">Dock  Content Tutorial &#8211; Dock at Top</a> | <a href="http://www.queness.com/resources/html/dock/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/docktop.gif" alt="" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/281/jquery-dock-menu-tutorial-revisitdock-at-bottom">Dock  Content Tutorial &#8211; Dock at Bottom</a> | <a href="http://www.queness.com/resources/html/dockbottom/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/dockbottom.gif" alt="Dock Content Tutorial - Dock at Bottom" width="450" height="200" /></li>
</ul>
<h2>Modal Window</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/77/simple-jquery-modal-window-tutorial">Custom  jQuery Modal Window Tutorial </a> | <a href="http://www.queness.com/resources/html/modal/jquery-modal-window.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/modal.gif" alt="Custom jQuery Modal Window Tutorial" width="450" height="200" /></li>
</ul>
<h2>Content Slider</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/356/create-a-vertical-horizontal-and-diagonal-sliding-content-website-with-jquery">Create  a Vertical, Horizontal and Diagonal Sliding Content Website</a> | <a href="http://www.queness.com/post/356/create-a-vertical-horizontal-and-diagonal-sliding-content-website-with-jQuery">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/scrollc.gif" alt="Create a Vertical, Horizontal and Diagonal Sliding Content  Website" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/106/jquery-tabbed-interfacetabbed-structure-menu-tutorial">jQuery  Tabbed Interface</a> | <a href="http://www.queness.com/resources/html/tabmenu/jquery-tabbed-menu-queness.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/tab.gif" alt="jQuery Tabbed Interface" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/274/jquery-sliding-tab-menu-for-sidebar-tutorial">jQuery  Sliding Tab Menu</a> | <a href="http://www.queness.com/resources/html/scrollto/index.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/stab.gif" alt="jQuery Sliding Tab Menu" width="450" height="200" /></li>
</ul>
<h2>jQuery Plugin</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/112/a-really-simple-jquery-plugin-tutorial">A  Really Simple jQuery Plugin Tutorial</a> | <a href="http://www.queness.com/resources/html/simpleplugin/jquery-simple-plugin-queness.html">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/plugin.gif" alt="A Really Simple jQuery Plugin Tutorial" width="450" height="200" /></li>
</ul>
<h2>AJAX</h2>
<ul id="simplelist">
<li> <a href="http://www.queness.com/post/160/create-a-ajax-based-form-submission-with-jquery">Create  a Ajax based Form Submission</a> | <a href="http://www.queness.com/resources/html/ajaxform/jQuery-ajaxform.php">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/form.gif" alt="Create a Ajax based Form Submission" width="450" height="200" /></li>
<li> <a href="http://www.queness.com/post/328/a-simple-ajax-driven-website-with-jqueryphp">A  Simple AJAX Driven Website</a> | <a href="http://www.queness.com/resources/html/ajax/index.php">Demo</a><br />
<img src="http://www.queness.com/resources/images/tutorials/website.gif" alt="A Simple AJAX Driven Website" width="450" height="200" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/42-do-not-miss-the-practical-tutorials-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>令人难以置信的HTML5 动画效果</title>
		<link>http://zmingcx.com/html5-is-difficult-to-set-animation.html</link>
		<comments>http://zmingcx.com/html5-is-difficult-to-set-animation.html#comments</comments>
		<pubDate>Tue, 29 Jun 2010 19:31:33 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2302</guid>
		<description><![CDATA[HTML5 的 Canvas 对象将改变 JavaScript 的使命，使之成为 HTML5 下强大的动画脚本编写工具。本文介绍了 8 个你从未见过的，基于 HTML5 Canvas 和 JavaScript 的动画，这些令人难以置信的效果将使你对 HTML5 彻底折服。需要指出的是，这些都是浏览器的原生动画，无需任何插件。 Tunnelers 纯 JavaScript + HTML5 Canvas 生成的交互动画，难以置信。 The Mesmerizer 在格子中移动鼠标，颜色随着改变并扩散到周围的格子，很迷幻。用鼠标点四角的格子，或按键盘，可以看到更奇妙的效果。 Burn 在页面上移动鼠标，或按下鼠标，这样的效果，很难相信是浏览器原生的。 Cheloniidae Live 也是基于纯粹的 JavaScript，不过使用了一个 JavaScript 库。很有趣，你可以通过修改其 JavaScript 代码实现自己的效果（可惜被墙了）。 Canvas 3D engine 一个基于 Canvas 的 3D 引擎。目前只支持预设的图形，纹理及基本交互功能。 Bomomo 很值得一试。 DDD 这个交互动画也很有趣。 Plasma Tree 非常阿凡达。 本文来源： queness.com 8 [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 的 Canvas 对象将改变 JavaScript 的使命，使之成为 HTML5 下强大的动画脚本编写工具。本文介绍了 8  个你从未见过的，基于 HTML5 Canvas 和 JavaScript 的动画，这些令人难以置信的效果将使你对 HTML5  彻底折服。需要指出的是，这些都是浏览器的原生动画，无需任何<span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/wpplugins" rel="nofollow" target="_blank">插件</a></span>。</p>
<p><strong><a href="http://ghost-hack.com/post/jsexperiments/tunneler/tunneler.html">Tunnelers</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/1.jpg" alt="" width="450" height="200" /></p>
<p>纯 JavaScript + HTML5 Canvas 生成的交互动画，难以置信。</p>
<p><strong><a href="http://danforys.com/mesmerizer/">The Mesmerizer</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/2.jpg" alt="" width="450" height="200" /></p>
<p>在格子中移动鼠标，颜色随着改变并扩散到周围的格子，很迷幻。用鼠标点四角的格子，或按键盘，可以看到更奇妙的效果。</p>
<p style="text-align: center;"><strong><a href="http://guciek.net/test/burn">Burn</a> </strong><br />
<img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/3.jpg" alt="" width="450" height="200" /></p>
<p>在页面上移动鼠标，或按下鼠标，这样的效果，很难相信是浏览器原生的。</p>
<p><strong><a href="http://spencertipping.com/beta/cheloniidae-live-b1/">Cheloniidae    Live</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/4.jpg" alt="" width="450" height="200" /></p>
<p>也是基于纯粹的 JavaScript，不过使用了一个 JavaScript 库。很有趣，你可以通过修改其 JavaScript  代码实现自己的效果（可惜被墙了）。</p>
<p><strong><a href="http://www.xs4all.nl/%7Epeterned/3d">Canvas 3D  engine</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/5.jpg" alt="" width="450" height="200" /></p>
<p>一个基于 Canvas 的 3D 引擎。目前只支持预设的图形，纹理及基本交互功能。</p>
<p><strong><a href="http://bomomo.com/">Bomomo</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/6.jpg" alt="" width="450" height="200" /></p>
<p>很值得一试。</p>
<p><strong><a href="http://the389.com/works/three/">DDD</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/8.jpg" alt="" width="450" height="200" /></p>
<p>这个交互动画也很有趣。</p>
<p><strong><a href="http://openrise.com/lab/PlasmaTree/">Plasma Tree</a> </strong></p>
<p style="text-align: center;"><img class="aligncenter" src="http://60.209.221.236/i-host/html5-ani/7.jpg" alt="" width="450" height="200" /></p>
<p>非常阿凡达。</p>
<p>本文来源： queness.com <a href="http://www.queness.com/post/3885/8-simply-amazing-html5-canvas-and-javascript-animations">8  Simply Amazing HTML5 Canvas and Javascript Animations</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/html5-is-difficult-to-set-animation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>纯CSS无图实现DIV边框平滑阴影</title>
		<link>http://zmingcx.com/no-plans-to-achieve-pure-css-div-smooth-shadow-borders.html</link>
		<comments>http://zmingcx.com/no-plans-to-achieve-pure-css-div-smooth-shadow-borders.html#comments</comments>
		<pubDate>Fri, 11 Jun 2010 01:44:30 +0000</pubDate>
		<dc:creator>知更鸟</dc:creator>
				<category><![CDATA[Web前端]]></category>

		<guid isPermaLink="false">http://zmingcx.com/?p=2448</guid>
		<description><![CDATA[纯CSS无图实现DIV边框平滑阴影，利用1像素的原理而制作的阴影效果，让每个嵌套的DIV CLASS元素向外延伸一像素，颜色递减，这样就实现了阴影效果，而且效果不错。 效果演示]]></description>
			<content:encoded><![CDATA[<p>纯<span class='bm_keywordlink_affiliate'><a href="http://zmingcx.com/category/webdesign" rel="nofollow" target="_blank">CSS</a></span>无图实现DIV边框平滑阴影，利用1像素的原理而制作的阴影效果，让每个嵌套的DIV CLASS元素向外延伸一像素，颜色递减，这样就实现了阴影效果，而且效果不错。</p>
<p><a href="http://zmingcx.com/wp-content/uploads/2010/06/CSS边框阴影.htm">效果演示</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zmingcx.com/no-plans-to-achieve-pure-css-div-smooth-shadow-borders.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
