<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
    <channel>
        <title>绝望的流星</title>
        <link>http://www.thinkjam.org/meteor/</link>
        <description>--Atlantis重现</description>
        <language>en</language>
        <copyright>Copyright 2011</copyright>
        <lastBuildDate>Sat, 16 Aug 2008 14:26:09 +0800</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>jQuery AnimateMask 动态遮罩</title>
            <description><![CDATA[基于jQuery animate封装的一个动态遮罩效果<BR>支持easing库<BR>支持maskIn/maskOut效果设置（有高度渐变、宽度简便、从各个角度进入/退出）<BR>支持遮罩层颜色设置、透明度设置<BR>支持进入、退出速度设置<BR><BR>具体使用方法：<BR>$("#threeimg").animateMask("#four",500,{easing:'backout',maskIn:"heightIn",maskOut:"widthOut",<BR>duration:"slow",color:"#f00",opacity:"0.5"});<BR><BR>$("#threeimg")为鼠标hover事件的对象<BR><BR>"#four"为出现动态遮罩的对象<BR><BR>maskIn/maskOut为进入、退出的效果设置（具体效果有heightIn、widthIn、lefttopIn、righttopIn、leftbottomIn、rightbottomIn和heightOut、widthOut、lefttopOut、righttopOut、leftbottomOut、rightbottomOut，默认效果为从遮罩对象中部变大出现，然后淡出）<BR><BR>duration为退出时的速度设置<BR><BR>color设置遮罩层的颜色<BR><BR>opacity设置遮罩层的透明度<BR><BR><A href="http://jqueryplugin.googlecode.com/files/AnimateMask.zip">http://jqueryplugin.googlecode.com/files/AnimateMask.zip</A>]]></description>
            <link>http://www.thinkjam.org/meteor/2008/08/jquery-animatemask.html</link>
            <guid>http://www.thinkjam.org/meteor/2008/08/jquery-animatemask.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">开发</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">jQuery Animate Mask 动态 遮罩</category>
            
            <pubDate>Sat, 16 Aug 2008 14:26:09 +0800</pubDate>
        </item>
        
        <item>
            <title>jQuery FlyTo效果</title>
            <description><![CDATA[从一个地方飞到另一个地方<BR>把jQuery的animate方法封装了一下，支持设置fly时间、是否fade away，支持easing库，支持回调<BR><BR>具体使用方法：<BR><BR>&nbsp;&nbsp;&nbsp;&nbsp;$("#from").flyTo("#to",1000,{fade:'true',easing:'backout',callback:function(){<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ended();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;}});<BR><BR>ended();&nbsp;是回调时调用的函数，fade为true在fly的同时会慢慢消失<BR><BR><A href="http://jqueryplugin.googlecode.com/files/FlyTo.zip">http://jqueryplugin.googlecode.com/files/FlyTo.zip</A>]]></description>
            <link>http://www.thinkjam.org/meteor/2008/08/jquery-flyto.html</link>
            <guid>http://www.thinkjam.org/meteor/2008/08/jquery-flyto.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">开发</category>
            
            
            <pubDate>Sat, 02 Aug 2008 02:03:07 +0800</pubDate>
        </item>
        
        <item>
            <title>jQuery checkbox 全选/反选</title>
            <description><![CDATA[<P>项目开发时要用到全选/反选，于是随手写了一个插件，适用于jQuery1.2.2之后的版本<BR><BR>使用方法:<BR>js里面加入<BR><BR><BR>&nbsp;&nbsp;$(document).ready(function(){<BR>&nbsp;&nbsp;&nbsp;var chk_options = { <BR>&nbsp;&nbsp;&nbsp;&nbsp;invert:'#invert',&nbsp;&nbsp;&nbsp;&nbsp;//反选框id,可以使用jQuery支持的格式<BR>&nbsp;&nbsp;&nbsp;&nbsp;all:'#checkAll',&nbsp;&nbsp;&nbsp;&nbsp;//全选框id,可以使用jQuery支持的格式<BR>&nbsp;&nbsp;&nbsp;&nbsp;item:'.checkitem'&nbsp;&nbsp;&nbsp;&nbsp;//被操作的CheckBox,可以使用jQuery支持的格式<BR>&nbsp;&nbsp;&nbsp;};<BR>&nbsp;&nbsp;&nbsp;$(this).chk_init(chk_options);<BR>&nbsp;&nbsp;});<BR><BR>在html页面中相应的位置加上上面的属性即可，如下：<BR><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;A&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;B&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;C&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;D&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;E&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;F&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" class="checkitem"/&gt;G&lt;br /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div id="div2"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" id="checkAll"/&gt;CheckAll<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &amp;nbsp;&amp;nbsp<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="checkbox" id="invert"/&gt;Invert<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;<BR><BR>下载地址：<BR><A href="http://www.sproutcore.com/"><A href="http://jqueryplugin.googlecode.com/files/CheckBox.zip">http://jqueryplugin.googlecode.com/files/CheckBox.zip</A></A> </P>]]></description>
            <link>http://www.thinkjam.org/meteor/2008/07/jquery-checkbox.html</link>
            <guid>http://www.thinkjam.org/meteor/2008/07/jquery-checkbox.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">开发</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">checkbox</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">jQuery</category>
            
            <pubDate>Tue, 15 Jul 2008 19:44:17 +0800</pubDate>
        </item>
        
        <item>
            <title>SproutCore</title>
            <description><![CDATA[SproutCore被形容为"开源，跨平台，类Cocoa创意的JavaScript架构，能够创造拥有桌面应用程序外观和操作感的网页应用。"<BR><BR>今天看了一下，还不是很成熟，等待完善版本<BR><BR><A href="http://www.sproutcore.com/">http://www.sproutcore.com/</A>]]></description>
            <link>http://www.thinkjam.org/meteor/2008/07/sproutcore.html</link>
            <guid>http://www.thinkjam.org/meteor/2008/07/sproutcore.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">开发</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">Apple</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">SproutCore</category>
            
            <pubDate>Thu, 10 Jul 2008 23:17:20 +0800</pubDate>
        </item>
        
    </channel>
</rss>
