<?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>37 More Shocking jQuery Plugins yazısına yapılan yorumlar</title>
	<atom:link href="http://www.listelog.com/37-more-shocking-jquery-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.listelog.com/37-more-shocking-jquery-plugins/</link>
	<description>a place to share, bookmarks, resources, css, jquery, photoshop, design, inspiration</description>
	<lastBuildDate>Sat, 06 Feb 2010 20:39:12 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>今すぐ使ってみたいjQuery プラグインのまとめ &#124; Nutspress tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-2064</link>
		<dc:creator>今すぐ使ってみたいjQuery プラグインのまとめ &#124; Nutspress</dc:creator>
		<pubDate>Fri, 11 Dec 2009 15:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-2064</guid>
		<description>[...] and slide toggle plugin  15 Ways to Improve CSS Techniques Using jQuery jQuery Link Nudge Plugin 37 More Shocking jQuery Plugins Best jQuery Tutorials for June 2009 Sproing! – Make An Elastic Thumbnail Menu How to implement a [...]</description>
		<content:encoded><![CDATA[<p>[...] and slide toggle plugin  15 Ways to Improve CSS Techniques Using jQuery jQuery Link Nudge Plugin 37 More Shocking jQuery Plugins Best jQuery Tutorials for June 2009 Sproing! – Make An Elastic Thumbnail Menu How to implement a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Web Design Rob tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-1242</link>
		<dc:creator>Web Design Rob</dc:creator>
		<pubDate>Thu, 05 Nov 2009 23:44:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-1242</guid>
		<description>Great list - particularly liked the fading header, that was a superb find!</description>
		<content:encoded><![CDATA[<p>Great list &#8211; particularly liked the fading header, that was a superb find!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Pulsar tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-1150</link>
		<dc:creator>Pulsar</dc:creator>
		<pubDate>Fri, 30 Oct 2009 14:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-1150</guid>
		<description>index.html




  
  
  
  


  
  
      Наведи на меня курсор
  
  
  
      Наведи на меня курсор
  



bubble.css

/* Booble */
.bubbleInfo {
	position: relative;
	width: 500px;
}
.bubble {
	
}
.popup {
	position: absolute;
	display: none;
	z-index: 50;
	border-collapse: collapse;
	font-size: .8em;
}
.popup td.corner {
	height: 13px;
	width: 15px;
}
.popup td#topleft { 
	background-image: url(bubble/bubble-1.png); 
} 
.popup td.top { 
	background-image: url(bubble/bubble-2.png); 
}
.popup td#topright { 
	background-image: url(bubble/bubble-3.png); 
}
.popup td.left { 
	background-image: url(bubble/bubble-4.png); 
}
.popup td.right { 
	background-image: url(bubble/bubble-5.png); 
}
.popup td#bottomleft { 
	background-image: url(bubble/bubble-6.png); 
}
.popup td.bottom { 
	background-image: url(bubble/bubble-7.png); 
	text-align: center;
}
.popup td.bottom img { 
	display: block; 
	margin: 0 auto; 
}
.popup td#bottomright { 
	background-image: url(bubble/bubble-8.png); 
}

bubble.js

$(function () {
  
  var i = 0;
  var z=1;
  do{
    title = $(&#039;.bubble:eq(&#039;+i+&#039;)&#039;).attr(&#039;title&#039;);
    if(!title){
      z=0;
    } else {
       $(&#039;.bubble:eq(&#039;+i+&#039;)&#039;).after(&#039;&#039;+title+&#039;&#039;);
       $(&#039;.bubble:eq(&#039;+i+&#039;)&#039;).removeAttr(&#039;title&#039;);
    }
    i++;
  }while(z&gt;0)

  $(&#039;.bubbleInfo&#039;).each(function () {
    var distance = 10;
    var time = 250;
    var hideDelay = 500;
    
    var hideDelayTimer = null;
    
    var beingShown = false;
    var shown = false;
    var trigger = $(&#039;.bubble&#039;, this);
    var info = $(&#039;.popup&#039;, this).css(&#039;opacity&#039;, 0);
    
    
    $([trigger.get(0), info.get(0)]).mouseover(function () {
      if (hideDelayTimer) clearTimeout(hideDelayTimer);
      if (beingShown &#124;&#124; shown) {
        // don&#039;t trigger the animation again
        return;
      } else {
        // reset position of info box
        beingShown = true;
        
        info.css({
        top: -40,
        left: 10,
        display: &#039;block&#039;
        }).animate({
        top: &#039;-=&#039; + distance + &#039;px&#039;,
        opacity: 1
        }, time, &#039;swing&#039;, function() {
          beingShown = false;
          shown = true;
        });
      }
      
      return false;
    }).mouseout(function () {
      if (hideDelayTimer) clearTimeout(hideDelayTimer);
      hideDelayTimer = setTimeout(function () {
        hideDelayTimer = null;
        info.animate({
        top: &#039;-=&#039; + distance + &#039;px&#039;,
        opacity: 0
        }, time, &#039;swing&#039;, function () {
          shown = false;
          info.css(&#039;display&#039;, &#039;none&#039;);
          });
      }, hideDelay);
      return false;
    });
  }); 
});</description>
		<content:encoded><![CDATA[<p>index.html</p>
<p>      Наведи на меня курсор</p>
<p>      Наведи на меня курсор</p>
<p>bubble.css</p>
<p>/* Booble */<br />
.bubbleInfo {<br />
	position: relative;<br />
	width: 500px;<br />
}<br />
.bubble {</p>
<p>}<br />
.popup {<br />
	position: absolute;<br />
	display: none;<br />
	z-index: 50;<br />
	border-collapse: collapse;<br />
	font-size: .8em;<br />
}<br />
.popup td.corner {<br />
	height: 13px;<br />
	width: 15px;<br />
}<br />
.popup td#topleft {<br />
	background-image: url(bubble/bubble-1.png);<br />
}<br />
.popup td.top {<br />
	background-image: url(bubble/bubble-2.png);<br />
}<br />
.popup td#topright {<br />
	background-image: url(bubble/bubble-3.png);<br />
}<br />
.popup td.left {<br />
	background-image: url(bubble/bubble-4.png);<br />
}<br />
.popup td.right {<br />
	background-image: url(bubble/bubble-5.png);<br />
}<br />
.popup td#bottomleft {<br />
	background-image: url(bubble/bubble-6.png);<br />
}<br />
.popup td.bottom {<br />
	background-image: url(bubble/bubble-7.png);<br />
	text-align: center;<br />
}<br />
.popup td.bottom img {<br />
	display: block;<br />
	margin: 0 auto;<br />
}<br />
.popup td#bottomright {<br />
	background-image: url(bubble/bubble-8.png);<br />
}</p>
<p>bubble.js</p>
<p>$(function () {</p>
<p>  var i = 0;<br />
  var z=1;<br />
  do{<br />
    title = $(&#8217;.bubble:eq(&#8217;+i+&#8217;)').attr(&#8217;title&#8217;);<br />
    if(!title){<br />
      z=0;<br />
    } else {<br />
       $(&#8217;.bubble:eq(&#8217;+i+&#8217;)').after(&#8221;+title+&#8221;);<br />
       $(&#8217;.bubble:eq(&#8217;+i+&#8217;)').removeAttr(&#8217;title&#8217;);<br />
    }<br />
    i++;<br />
  }while(z&gt;0)</p>
<p>  $(&#8217;.bubbleInfo&#8217;).each(function () {<br />
    var distance = 10;<br />
    var time = 250;<br />
    var hideDelay = 500;</p>
<p>    var hideDelayTimer = null;</p>
<p>    var beingShown = false;<br />
    var shown = false;<br />
    var trigger = $(&#8217;.bubble&#8217;, this);<br />
    var info = $(&#8217;.popup&#8217;, this).css(&#8217;opacity&#8217;, 0);</p>
<p>    $([trigger.get(0), info.get(0)]).mouseover(function () {<br />
      if (hideDelayTimer) clearTimeout(hideDelayTimer);<br />
      if (beingShown || shown) {<br />
        // don&#8217;t trigger the animation again<br />
        return;<br />
      } else {<br />
        // reset position of info box<br />
        beingShown = true;</p>
<p>        info.css({<br />
        top: -40,<br />
        left: 10,<br />
        display: &#8216;block&#8217;<br />
        }).animate({<br />
        top: &#8216;-=&#8217; + distance + &#8216;px&#8217;,<br />
        opacity: 1<br />
        }, time, &#8217;swing&#8217;, function() {<br />
          beingShown = false;<br />
          shown = true;<br />
        });<br />
      }</p>
<p>      return false;<br />
    }).mouseout(function () {<br />
      if (hideDelayTimer) clearTimeout(hideDelayTimer);<br />
      hideDelayTimer = setTimeout(function () {<br />
        hideDelayTimer = null;<br />
        info.animate({<br />
        top: &#8216;-=&#8217; + distance + &#8216;px&#8217;,<br />
        opacity: 0<br />
        }, time, &#8217;swing&#8217;, function () {<br />
          shown = false;<br />
          info.css(&#8217;display&#8217;, &#8216;none&#8217;);<br />
          });<br />
      }, hideDelay);<br />
      return false;<br />
    });<br />
  });<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Wegas tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-278</link>
		<dc:creator>Wegas</dc:creator>
		<pubDate>Sun, 04 Oct 2009 07:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-278</guid>
		<description>new blog</description>
		<content:encoded><![CDATA[<p>new blog</p>
]]></content:encoded>
	</item>
	<item>
		<title>Globals tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-225</link>
		<dc:creator>Globals</dc:creator>
		<pubDate>Fri, 02 Oct 2009 23:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-225</guid>
		<description>all good things</description>
		<content:encoded><![CDATA[<p>all good things</p>
]]></content:encoded>
	</item>
	<item>
		<title>Pharmc443 tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-217</link>
		<dc:creator>Pharmc443</dc:creator>
		<pubDate>Fri, 02 Oct 2009 12:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-217</guid>
		<description>Very nice site!</description>
		<content:encoded><![CDATA[<p>Very nice site!</p>
]]></content:encoded>
	</item>
	<item>
		<title>37 More Shocking jQuery Plugins &#124; Choose Daily tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-174</link>
		<dc:creator>37 More Shocking jQuery Plugins &#124; Choose Daily</dc:creator>
		<pubDate>Wed, 30 Sep 2009 13:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-174</guid>
		<description>[...] 37 More Shocking jQuery Plugins [...]</description>
		<content:encoded><![CDATA[<p>[...] 37 More Shocking jQuery Plugins [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>lilikindsli tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-173</link>
		<dc:creator>lilikindsli</dc:creator>
		<pubDate>Wed, 30 Sep 2009 12:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-173</guid>
		<description>HExemX I want to say - thank you for this!</description>
		<content:encoded><![CDATA[<p>HExemX I want to say &#8211; thank you for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>click tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-172</link>
		<dc:creator>click</dc:creator>
		<pubDate>Wed, 30 Sep 2009 11:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-172</guid>
		<description>Thank you for providing this site and guest book.</description>
		<content:encoded><![CDATA[<p>Thank you for providing this site and guest book.</p>
]]></content:encoded>
	</item>
	<item>
		<title>jonnjenkind tarafından</title>
		<link>http://www.listelog.com/37-more-shocking-jquery-plugins/comment-page-1/#comment-169</link>
		<dc:creator>jonnjenkind</dc:creator>
		<pubDate>Tue, 29 Sep 2009 20:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.listelog.com/?p=732#comment-169</guid>
		<description>BGeZSR I want to say - thank you for this!</description>
		<content:encoded><![CDATA[<p>BGeZSR I want to say &#8211; thank you for this!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
