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

<channel>
	<title>草窟设计 &#187; 代码</title>
	<atom:link href="http://www.yaoyingying.com/tag/%e4%bb%a3%e7%a0%81/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yaoyingying.com</link>
	<description>Wordpress, Drupal 二次开发~</description>
	<lastBuildDate>Wed, 08 Feb 2012 12:54:01 +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.yaoyingying.com/2010/12/14/javascript-fixed-sheet/</link>
		<comments>http://www.yaoyingying.com/2010/12/14/javascript-fixed-sheet/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 06:34:53 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[前端技术]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[代码]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=1334</guid>
		<description><![CDATA[id： 你要滚动的内容的id l： 横坐标的位置 不写为紧贴右边 t： 你要放在页面的那个位置默认是贴着底边 0是贴着顶边 f： 1表示固定 不写或者0表示滚动 实际上是google来别人的程序，都互相转载，也不知道谁是原创。 我在原来的基础上加了一个关闭浮动层的按钮的function。 &#60;img onclick=&#34;div_hide('aa');return false;&#34; src=&#34;#&#34; alt=&#34;#&#34; /&#62; 使用onclick事件，aa 就是要关闭的层的ID。 &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62; &#60;head&#62; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gbk&#34; /&#62; &#60;title&#62;底边浮动广告&#60;/title&#62; &#60;/head&#62; &#60;body&#62;&#60;div style=&#34;width:100%;height:1500px; background:#fff&#34;&#62;&#60;/div&#62; &#60;style type=&#34;text/css&#34;&#62; #aa {width:300px;height:200px; border:#9DC3D1 solid 1px; position:relative;} .div_close {position:absolute; right:5px; top:5px; height:20px; [...]]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2010/12/14/javascript-fixed-sheet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JQUERY搜索框提示效果</title>
		<link>http://www.yaoyingying.com/2009/09/01/jquery%e6%90%9c%e7%b4%a2%e6%a1%86%e6%8f%90%e7%a4%ba%e6%95%88%e6%9e%9c/</link>
		<comments>http://www.yaoyingying.com/2009/09/01/jquery%e6%90%9c%e7%b4%a2%e6%a1%86%e6%8f%90%e7%a4%ba%e6%95%88%e6%9e%9c/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 00:53:25 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[代码人生]]></category>
		<category><![CDATA[前端技术]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[示例]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=633</guid>
		<description><![CDATA[搜索框提示效果，输入框获取焦点，则原提示关键字消失，失去焦点，还原原关键字，当然是在没有输入用户关键字的前提下！ &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62; &#60;head&#62; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62; &#60;title&#62;搜索框提示效果&#60;/title&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&#34; &#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;p&#62;&#60;/p&#62;&#60;br/&#62; 鼠标点击输入框： &#60;input id=&#34;name&#34; type=&#34;text&#34; value=&#34;keywords&#34;/&#62; &#60;script type=&#34;text/javascript&#34;&#62; //$(&#34;#name&#34;).val(); $(&#34;#name&#34;).focus( function () {if($(this).val() == 'keywords') $(this).val(&#34;&#34;);}); $(&#34;#name&#34;).blur( function () {if($(this).val() == '') $(this).val(&#34;keywords&#34;);}); &#60;/script&#62; &#60;/body&#62; &#60;/html&#62; 提示：你可以先修改部分代码再运行。]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/09/01/jquery%e6%90%9c%e7%b4%a2%e6%a1%86%e6%8f%90%e7%a4%ba%e6%95%88%e6%9e%9c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQUERY 层-隐藏-显示 效果</title>
		<link>http://www.yaoyingying.com/2009/08/28/jquery-%e5%b1%82-%e9%9a%90%e8%97%8f-%e6%98%be%e7%a4%ba-%e6%95%88%e6%9e%9c-%e6%96%87%e7%ab%a0%e5%88%97%e8%a1%a8%e6%91%98%e8%a6%81%e6%88%96%e6%a0%87%e9%a2%98%e6%a8%a1%e5%bc%8f%e5%88%87%e6%8d%a2/</link>
		<comments>http://www.yaoyingying.com/2009/08/28/jquery-%e5%b1%82-%e9%9a%90%e8%97%8f-%e6%98%be%e7%a4%ba-%e6%95%88%e6%9e%9c-%e6%96%87%e7%ab%a0%e5%88%97%e8%a1%a8%e6%91%98%e8%a6%81%e6%88%96%e6%a0%87%e9%a2%98%e6%a8%a1%e5%bc%8f%e5%88%87%e6%8d%a2/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 08:14:58 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[前端技术]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[层]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=629</guid>
		<description><![CDATA[JQUERY 层-隐藏-显示 效果 可以应用与文章列表摘要模式-列表模式切换： &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#34;&#62; &#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; dir=&#34;ltr&#34; lang=&#34;en-EN&#34;&#62; &#60;head&#62; &#60;script src=&#34;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;style.css&#34; /&#62; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34; /&#62; &#60;title&#62;Simple JQuery Collapsing menu&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(function() { var i = 1; $(&#34;#mostrar&#34;).click(function(event) { if(i%2 == 1) $(&#34;#mostrar&#34;).html(&#34;简洁模式&#34;); else $(&#34;#mostrar&#34;).html(&#34;摘要模式&#34;); event.preventDefault(); $(&#34;.box2&#34;).slideToggle(); i++; [...]]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/08/28/jquery-%e5%b1%82-%e9%9a%90%e8%97%8f-%e6%98%be%e7%a4%ba-%e6%95%88%e6%9e%9c-%e6%96%87%e7%ab%a0%e5%88%97%e8%a1%a8%e6%91%98%e8%a6%81%e6%88%96%e6%a0%87%e9%a2%98%e6%a8%a1%e5%bc%8f%e5%88%87%e6%8d%a2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript图片横向平滑切换效果</title>
		<link>http://www.yaoyingying.com/2009/08/06/javascript%e5%9b%be%e7%89%87%e6%a8%aa%e5%90%91%e5%b9%b3%e6%bb%91%e5%88%87%e6%8d%a2%e6%95%88%e6%9e%9c/</link>
		<comments>http://www.yaoyingying.com/2009/08/06/javascript%e5%9b%be%e7%89%87%e6%a8%aa%e5%90%91%e5%b9%b3%e6%bb%91%e5%88%87%e6%8d%a2%e6%95%88%e6%9e%9c/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 01:25:31 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[图片横向平滑]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=555</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/08/06/javascript%e5%9b%be%e7%89%87%e6%a8%aa%e5%90%91%e5%b9%b3%e6%bb%91%e5%88%87%e6%8d%a2%e6%95%88%e6%9e%9c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript+css 新闻滑轮显示</title>
		<link>http://www.yaoyingying.com/2009/07/21/javascript-css-%e6%96%b0%e9%97%bb%e6%bb%91%e8%bd%ae%e6%8d%a2%e6%98%be%e7%a4%ba/</link>
		<comments>http://www.yaoyingying.com/2009/07/21/javascript-css-%e6%96%b0%e9%97%bb%e6%bb%91%e8%bd%ae%e6%8d%a2%e6%98%be%e7%a4%ba/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 04:49:49 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[代码人生]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css轮换显示]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[代码]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=481</guid>
		<description><![CDATA[Javascript+CSS 经典效果, 新闻滑轮显示. 效果2张: 代码: &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01 Transitional//EN&#34; &#34;http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd&#34;&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;绝对经典的滑轮新闻显示 (javascript+css)&#60;/title&#62; &#60;meta http-equiv=Content-Type content=&#34;text/html; charset=gb2312&#34;&#62; &#60;style type=&#34;text/css&#34;&#62; &#60;!-- *{padding:0; margin:0} img{border:0; display:block;} BODY { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 12px; PADDING-BOTTOM: 0px; MARGIN: 0px auto; COLOR: black; LINE-HEIGHT: 150%; PADDING-TOP: 10px; BACKGROUND-COLOR: white; TEXT-ALIGN: center } .dis { DISPLAY: [...]]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/07/21/javascript-css-%e6%96%b0%e9%97%bb%e6%bb%91%e8%bd%ae%e6%8d%a2%e6%98%be%e7%a4%ba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

