<?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>Blogfreakz - Web Design and Web Development resources &#187; Mootools</title>
	<atom:link href="http://blogfreakz.com/category/mootools/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Mon, 21 May 2012 02:24:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Create an Image Menu with jQuery</title>
		<link>http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/</link>
		<comments>http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 03:52:40 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25494</guid>
		<description><![CDATA[The web developers at Maui Website Design have designed a  dynamic image menu that allows you to navigate easily through any visual content with a Motools-inspired effect, powered by jQuery Javascript. The menu&#8217;s main functions require a jQuery-compatible script, a valid XHTML, a Motools-like sliding effect, and it should be lightweight. It comes in two [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong> </strong></p>
<p>The web developers at <a href="http://www.alohatechsupport.net/" target="_blank"><strong>Maui Website Design</strong></a> have designed a  dynamic image menu that allows you to navigate easily through any visual content with a Motools-inspired effect, powered by jQuery Javascript.</p>
<p>The menu&#8217;s main functions require a jQuery-compatible script, a valid XHTML, a Motools-like sliding effect, and it should be lightweight. It comes in two versions, the first of which you can view <a href="http://www.alohatechsupport.net/examples/image-menu-1.html" target="_blank"><strong>HERE</strong></a>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-25495" title="Image Menu" src="http://blogfreakz.com/wp-content/uploads/2012/02/Image-Menu.jpg" alt="Image Menu Create an Image Menu with jQuery " width="528" height="181" /><strong>Click on the image to download the source. </strong></p>
<p>&nbsp;</p>
<p><strong>Step 1: HTML</strong></p>
<pre><span style="color: #003366;">&lt;div class="jimgMenu"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"&gt;Landscapes&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"&gt;People&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"&gt;Nature&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"&gt;Abstract&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"&gt;Urban&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;
</span></pre>
<p><strong> </strong></p>
<p><strong>Step 2: CSS</strong></p>
<pre><span style="color: #003366;">.jimgMenu {</span></pre>
<pre><span style="color: #003366;">position: relative;</span></pre>
<pre><span style="color: #003366;">width: 670px;</span></pre>
<pre><span style="color: #003366;">height: 200px;</span></pre>
<pre><span style="color: #003366;">overflow: hidden;</span></pre>
<pre><span style="color: #003366;">margin: 25px 0px 0px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul {</span></pre>
<pre><span style="color: #003366;">list-style: none;</span></pre>
<pre><span style="color: #003366;">margin: 0px;</span></pre>
<pre><span style="color: #003366;">display: block;</span></pre>
<pre><span style="color: #003366;">height: 200px;</span></pre>
<pre><span style="color: #003366;">width: 1340px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li {</span></pre>
<pre><span style="color: #003366;">float: left;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li a {</span></pre>
<pre><span style="color: #003366;">text-indent: -1000px;</span></pre>
<pre><span style="color: #003366;">background:#FFFFFF none repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">border-right: 2px solid #fff;</span></pre>
<pre><span style="color: #003366;">cursor:pointer;</span></pre>
<pre><span style="color: #003366;">display:block;</span></pre>
<pre><span style="color: #003366;">overflow:hidden;</span></pre>
<pre><span style="color: #003366;">width:78px;</span></pre>
<pre><span style="color: #003366;">height: 200px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li.landscapes a {</span></pre>
<pre><span style="color: #003366;">background: url(images/landscapes.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li.people a {</span></pre>
<pre><span style="color: #003366;">background: url(images/people.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li.nature a {</span></pre>
<pre><span style="color: #003366;">background: url(images/nature.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li.abstract a {</span></pre>
<pre><span style="color: #003366;">background: url(images/abstract.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li.urban a {</span></pre>
<pre><span style="color: #003366;">background: url(images/urban.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">min-width:310px;</span></pre>
<pre><span style="color: #003366;">}
</span></pre>
<p><strong>Step 3: Javascript</strong></p>
<p>Include jQuery and all plugin files listed in the header of your HTML file. It should look like this:</p>
<pre><span style="color: #003366;">&lt;link href="css/jimgMenu.css" rel="stylesheet" type="text/css" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery-easing-1.3.pack.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery-easing-compatibility.1.2.pack.js"&gt;&lt;/script&gt;<strong>
</strong></span></pre>
<p>Include the jQuery in your attached file or page.</p>
<pre><span style="color: #003366;">&lt;script type="text/javascript"&gt;</span></pre>
<pre><span style="color: #003366;">$(document).ready(function () {</span></pre>
<pre><span style="color: #003366;">// find the elements to be eased and hook the hover event</span></pre>
<pre><span style="color: #003366;">$('div.jimgMenu ul li a').hover(function() {</span></pre>
<pre><span style="color: #003366;">// if the element is currently being animated</span></pre>
<pre><span style="color: #003366;">if ($(this).is(':animated')) {</span></pre>
<pre><span style="color: #003366;">$(this).stop().animate({width: "310px"}, {duration: 450, easing:"easeOutQuad", complete: "callback"});</span></pre>
<pre><span style="color: #003366;">} else {</span></pre>
<pre><span style="color: #003366;">// ease in quickly</span></pre>
<pre><span style="color: #003366;">$(this).stop().animate({width: "310px"}, {duration: 400, easing:"easeOutQuad", complete: "callback"});</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}, function () {</span></pre>
<pre><span style="color: #003366;">// on hovering out, ease the element out</span></pre>
<pre><span style="color: #003366;">if ($(this).is(':animated')) {</span></pre>
<pre><span style="color: #003366;">$(this).stop().animate({width: "78px"}, {duration: 400, easing:"easeInOutQuad", complete: "callback"})</span></pre>
<pre><span style="color: #003366;">} else {</span></pre>
<pre><span style="color: #003366;">// ease out slowly</span></pre>
<pre><span style="color: #003366;">$(this).stop(':animated').animate({width: "78px"}, {duration: 450, easing:"easeInOutQuad", complete: "callback"});</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">&lt;/script&gt;</span>
</pre>
<p>In the second version, kwicks are used to add functionality and help to the Sliding Image Menu animation. Get the <a href="http://www.alohatechsupport.net/examples/image-menu-2.html" target="_blank"><strong>DEMO</strong></a> and <a href="http://www.alohatechsupport.net/downloads/image-menu-2.zip" target="_blank"><strong>SOURCE</strong></a> here.</p>
<p>&nbsp;</p>
<p><strong> </strong></p>
<p><strong>Step 1: HTML</strong></p>
<pre><span style="color: #003366;">&lt;div class="jimgMenu"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li id="landscapes"&gt;&lt;a href="#"&gt;Landscapes&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li id="people"&gt;&lt;a href="#"&gt;People&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li id="nature"&gt;&lt;a href="#"&gt;Nature&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li id="abstract"&gt;&lt;a href="#"&gt;Abstract&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li id="urban"&gt;&lt;a href="#"&gt;Urban&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span>
</pre>
<p><strong> </strong></p>
<p><strong>Step 2: CSS</strong></p>
<pre><span style="color: #003366;">(Adapted for kwicks)</span></pre>
<pre><span style="color: #003366;">.jimgMenu {</span></pre>
<pre><span style="color: #003366;">position:relative;</span></pre>
<pre><span style="color: #003366;">margin: 0px 0px 0px 50px;</span></pre>
<pre><span style="color: #003366;">padding: 0px;</span></pre>
<pre><span style="color: #003366;">width:475px;</span></pre>
<pre><span style="color: #003366;">height:200px;</span></pre>
<pre><span style="color: #003366;">overflow: hidden;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul {</span></pre>
<pre><span style="color: #003366;">list-style: none;</span></pre>
<pre><span style="color: #003366;">margin: 0px;</span></pre>
<pre><span style="color: #003366;">padding: 0px;</span></pre>
<pre><span style="color: #003366;">display: block;</span></pre>
<pre><span style="color: #003366;">height: 200px;</span></pre>
<pre><span style="color: #003366;">position: relative;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li {</span></pre>
<pre><span style="color: #003366;">width: 95px;</span></pre>
<pre><span style="color: #003366;">float: left;</span></pre>
<pre><span style="color: #003366;">display: block;</span></pre>
<pre><span style="color: #003366;">overflow: hidden;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li a {</span></pre>
<pre><span style="color: #003366;">text-indent: -1000px;</span></pre>
<pre><span style="color: #003366;">background:#fff repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">border-right: 2px solid #fff;</span></pre>
<pre><span style="color: #003366;">cursor:pointer;</span></pre>
<pre><span style="color: #003366;">display:block;</span></pre>
<pre><span style="color: #003366;">overflow: hidden;</span></pre>
<pre><span style="color: #003366;">height: 200px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li#landscapes a {</span></pre>
<pre><span style="color: #003366;">background: url(images/landscapes.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li#people a {</span></pre>
<pre><span style="color: #003366;">background: url(images/people.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li#nature a {</span></pre>
<pre><span style="color: #003366;">background: url(images/nature.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li#abstract a {</span></pre>
<pre><span style="color: #003366;">background: url(images/abstract.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.jimgMenu ul li#urban a {</span></pre>
<pre><span style="color: #003366;">background: url(images/urban.jpg) repeat scroll 0%;</span></pre>
<pre><span style="color: #003366;">border-right-style: none;</span></pre>
<pre><span style="color: #003366;">}</span>
</pre>
<p><strong> </strong></p>
<p><strong>Step 3: Javascript</strong></p>
<p>Include the jQuery and all files below in the header section of your HTML.</p>
<pre><span style="color: #003366;">&lt;link href="css/jimgMenukwicks.css" rel="stylesheet" type="text/css" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery-easing-1.3.pack.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery-easing-compatibility.1.2.pack.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery.kwicks-1.5.1.pack.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">The above code will activate jQuery Sliding Image Menu plugin. Lastly, place the script below in your html head or document body.</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript"&gt;</span></pre>
<pre><span style="color: #003366;">$().ready(function() {</span></pre>
<pre><span style="color: #003366;">$('.jimgMenu ul').kwicks({max: 310, duration: 300, easing: 'easeOutQuad', complete: 'callback'});</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">&lt;/script&gt;</span></pre>
<p>&nbsp;</p>
<p>Take note that CSS controls most of the image menu&#8217;s style and if you want to customize the easing type and duration, use the jQuery easing plugin to achieve different sliding effects.</p>
<p>&nbsp;</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="jquery image menu">jquery image menu</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="image menu jquery">image menu jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="image menu with jquery">image menu with jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="jimgmenu">jimgmenu</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="jquery menu image">jquery menu image</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="scrolling image menu jquery">scrolling image menu jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="easing:easeoutquad">easing:easeoutquad</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="menu design jquery images">menu design jquery images</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="jquery 이미지 메뉴">jquery 이미지 메뉴</a></li>
<li><a href="http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/" title="jquery scrolling image menu">jquery scrolling image menu</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/create-an-image-menu-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Enable Mobile Templates on Blogger</title>
		<link>http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/</link>
		<comments>http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 22:38:30 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Upload]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=22628</guid>
		<description><![CDATA[Hey Guys, Make sure that you have enabled your mobile template on blogger, so you can get in touch with your readers while they&#8217;re on the go! Just login on your account and setup mobile template for your blog on blogger. This tutorial uses a new version of blogger, if you are using an older [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Guys,</p>
<p>Make sure that you have enabled your mobile template on blogger, so you can get in touch with your readers while they&#8217;re on the go! Just login on your account and setup mobile template for your blog on blogger.</p>
<p>This tutorial uses a new version of blogger, if you are using an older version please upgrade to bloggers advance with a click. (super easy)</p>
<p>1. Login to your blogger account on <a href="http://blogger.com/">blogger</a><a href="http://blogger.com/">.</a><a href="http://blogger.com/">com</a></p>
<p>2. Go to on Main Menu for your blog -</p>
<p><a rel="attachment wp-att-22632" href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/attachment/blogger-main-menu-2/"><img class="aligncenter size-full wp-image-22632" title="blogger main menu" src="http://blogfreakz.com/wp-content/uploads/2011/10/blogger-main-menu1.png" alt="blogger main menu1 How To Enable Mobile Templates on Blogger" width="296" height="462" /></a></p>
<p>3. In the Template pages, setup on Mobile views</p>
<p><a rel="attachment wp-att-22633" href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/attachment/blogger-main-menu-2-2/"><img class="aligncenter size-full wp-image-22633" title="blogger main menu 2" src="http://blogfreakz.com/wp-content/uploads/2011/10/blogger-main-menu-2.png" alt="blogger main menu 2 How To Enable Mobile Templates on Blogger" width="640" height="284" /></a></p>
<p>4. Click Setting (gear icons) and enable / checking “Yes. Show mobile Template on mobile devices.”</p>
<p><a rel="attachment wp-att-22634" href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/attachment/blogger-main-menu-3/"><img class="aligncenter size-full wp-image-22634" title="blogger main menu 3" src="http://blogfreakz.com/wp-content/uploads/2011/10/blogger-main-menu-3.png" alt="blogger main menu 3 How To Enable Mobile Templates on Blogger" width="590" height="536" /></a></p>
<p>5. Choose Template for Mobile views and <strong>Save configuration</strong>.</p>
<p><a rel="attachment wp-att-22635" href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/attachment/blogger-main-menu-4/"><img class="aligncenter size-full wp-image-22635" title="blogger main menu 4" src="http://blogfreakz.com/wp-content/uploads/2011/10/blogger-main-menu-4.png" alt="blogger main menu 4 How To Enable Mobile Templates on Blogger" width="604" height="552" /></a></p>
<p>6. Check your  blog using any mobile device:</p>
<blockquote><p>For example: www.tofu-burger.blogspot.com</p></blockquote>
<p><a rel="attachment wp-att-22636" href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/attachment/tofuburger-iphone-screenshot/"><img class="aligncenter size-full wp-image-22636" title="tofuburger iphone screenshot" src="http://blogfreakz.com/wp-content/uploads/2011/10/tofuburger-iphone-screenshot.png" alt="tofuburger iphone screenshot How To Enable Mobile Templates on Blogger" width="320" height="480" /></a>Mobile template -&gt; &#8216;Picture Window&#8217; -&gt; enabled  makes everything way easier  and faster to search and find posts on mobile devices.</p>
<p><a rel="attachment wp-att-22637" href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/attachment/tofuburger-iphone-screenshot2/"><img class="aligncenter size-full wp-image-22637" title="tofuburger iphone screenshot2" src="http://blogfreakz.com/wp-content/uploads/2011/10/tofuburger-iphone-screenshot2.png" alt="tofuburger iphone screenshot2 How To Enable Mobile Templates on Blogger" width="320" height="480" /></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="html5 templates for blogspot mobile">html5 templates for blogspot mobile</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="iphone mobile template">iphone mobile template</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="Choose Template on blogger com">Choose Template on blogger com</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="iphone mobile template for blogger">iphone mobile template for blogger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="iphone template for blogger">iphone template for blogger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="templet bloger">templet bloger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="toturial blog">toturial blog</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="mobile templates">mobile templates</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="mobile template login">mobile template login</a></li>
<li><a href="http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/" title="amazing blogger mobile tempelate">amazing blogger mobile tempelate</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-enable-mobile-templates-on-blogger/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Wall &#8211; Draggable &amp; Endless Content Galleries For MooTools</title>
		<link>http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/</link>
		<comments>http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 16:13:59 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Gallery/Carousel/Slider]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21000</guid>
		<description><![CDATA[The Wall is plugin for MooTools that enables you to create an endless grid. You choose the number of elements, The Wall will see to the rest. Every moment you may know the position of your wall or move it where you like better by clicking or dragging it. With The Wall you decide the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="Link to The Wall - Draggable &#038; Endless Content Galleries For MooTools"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/vpy2em.jpg" alt="vpy2em The Wall   Draggable & Endless Content Galleries For MooTools" title="" width="200" height="200" /></a><a title="The Wall" rel="nofollow" href="http://wall.plasm.it/">The Wall</a> is plugin for MooTools that enables you to create an endless grid. You choose the number of elements, The Wall will see to the rest. Every moment you may know the position of your wall or move it where you like better by clicking or dragging it.<br />
<span id="more-21000"></span><a rel="nofollow" href="http://wall.plasm.it/"><img class="alignnone size-full wp-image-21031" title="the-wall" src="http://blogfreakz.com/wp-content/uploads/2011/07/the-wall.jpg" alt="the wall The Wall   Draggable & Endless Content Galleries For MooTools" width="600" height="300" /></a><br />
With The Wall you decide the position of your contents punctually. Every plug is ready to hold your contents, pictures, videos, texts, everything. You are the one who chooses how to show your information.</p>
<p>With The Wall you may have an endless grid or an original draggable coda slider, if you like better. You’re right! The Wall can work in a traditional or draggable coda fuctionality. 2 functions and a new and original interaction system.</p>
<p class="download">Requirements: MooTools 1.3.2+<br />
Demo: <a title="the wall" rel="nofollow" href="http://wall.plasm.it/">http://wall.plasm.it</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="wall of sound draggable image gallery jquery">wall of sound draggable image gallery jquery</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="mootools wall">mootools wall</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="the wall">the wall</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="jquery dragable wall">jquery dragable wall</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="the wall mootools">the wall mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="mootools 1 3 carousel">mootools 1 3 carousel</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="draggable gallery">draggable gallery</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="fullscreen gallery with mootools">fullscreen gallery with mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="mootoold 1 3 2 div carousel">mootoold 1 3 2 div carousel</a></li>
<li><a href="http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/" title="wall gallery script">wall gallery script</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/the-wall-draggable-endless-content-galleries-for-mootools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MochaUI &#8211; Mootools Web Applications User Interface Library</title>
		<link>http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/</link>
		<comments>http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 12:50:10 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18618</guid>
		<description><![CDATA[MochaUI is a web applications user interface library built on the Mootools JavaScript framework, that you can use for create, web applications, web desktops or widgets. MochaUI library does not use any images but canvas tags for gradients, rounded-corners or shadows.  MochaUI allow us to  create horizontally and vertically fluid layout modules with columns and [...]]]></description>
			<content:encoded><![CDATA[<p><a title="mochaui" rel="nofollow" href="http://mochaui.org/" target="_blank">MochaUI</a> is a web applications user interface library built on the Mootools JavaScript framework, that you can use for create, web applications, web desktops or widgets.</p>
<p><span id="more-18618"></span><a rel="nofollow" href="http://mochaui.org/"><img class="alignnone size-full wp-image-18762" title="mochaui" src="http://blogfreakz.com/wp-content/uploads/2011/04/mochaui.jpg" alt="mochaui MochaUI   Mootools Web Applications User Interface Library" width="600" height="300" /></a><br />
MochaUI library does not use any images but canvas tags for gradients, rounded-corners or shadows.  MochaUI allow us to  create horizontally and vertically fluid layout modules with columns and panels easily. Columns and panels can displayed as tabed, panel can be collapsed, expanded, and resized.</p>
<p class="download">Requirements: Mootools framework<br />
Demo: <a title="mochaui" rel="nofollow" href="http://mochaui.org/demo/" target="_blank">http://mochaui.org/demo/</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mochaui">mochaui</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mochaui themes">mochaui themes</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mochaui mobile">mochaui mobile</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mootools UI">mootools UI</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mootools mobile UI">mootools mobile UI</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mochaui tutorial">mochaui tutorial</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mochaui demo">mochaui demo</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="django mochaUI">django mochaUI</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="mochaui cakephp">mochaui cakephp</a></li>
<li><a href="http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/" title="layout mootools">layout mootools</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/mochaui-mootools-web-applications-user-interface-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CeraBox &#8211; Alternative Lightbox for MooTools</title>
		<link>http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/</link>
		<comments>http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 13:19:00 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Light Box]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=15944</guid>
		<description><![CDATA[CeraBox is alternative lightbox build on MooTools 1.3, inspired by Fancybox.net. CeraBox allow us to display images, SWF files or HTML  file. It can load iframes and make Ajax requests. CeraBox can grouping images to be presented as a gallery where they can be browsed with prev-next buttons. CeraBox requires MooTools 1.3 +. Requirements: MooTools [...]]]></description>
			<content:encoded><![CDATA[<p><a title="cerabox" rel="nofollow" href="http://cerabox.ceramedia.nl/" target="_blank">CeraBox</a> is alternative lightbox build on MooTools 1.3, inspired by Fancybox.net. CeraBox allow us to display images, SWF files or HTML  file. It can load iframes and make Ajax requests.<br />
<span id="more-15944"></span></p>
<p><a rel="nofollow" href="http://cerabox.ceramedia.nl/"><img class="alignnone size-full wp-image-15947" title="cerabox" src="http://blogfreakz.com/wp-content/uploads/2011/02/cerabox.jpg" alt="cerabox CeraBox   Alternative Lightbox for MooTools" width="600" height="380" /></a></p>
<p>CeraBox can grouping images to be presented as a gallery where they can be browsed with prev-next buttons. CeraBox requires MooTools 1.3 +.</p>
<p class="download"><strong>Requirements</strong>: MooTools 1.3 +<br />
<strong>Demo</strong>: <a title="cerabox" rel="nofollow" href="http://cerabox.ceramedia.nl/" target="_blank">http://cerabox.ceramedia.nl/</a><br />
<strong>License</strong>: Other License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="cerabox">cerabox</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="cerabox wordpress">cerabox wordpress</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="cerabox demo">cerabox demo</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="cerabox form">cerabox form</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="mootools 1 3 carousel">mootools 1 3 carousel</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="lightbox mootools login">lightbox mootools login</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="login form mootools">login form mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="fancybox gallery out of iframe">fancybox gallery out of iframe</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="Loading content Ajax mootools">Loading content Ajax mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/" title="how to cerabox">how to cerabox</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/cerabox-lightbox-for-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 All-Time Greatest MooTools Plugins</title>
		<link>http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/</link>
		<comments>http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 13:34:43 +0000</pubDate>
		<dc:creator>jakerocheleau</dc:creator>
				<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=14468</guid>
		<description><![CDATA[Alongside jQuery MooTools is possibly one of the most comprehensive JavaScript libraries to date. The package not only offers exceptional documentation but developers are able to create plugins running off MooTools. These have been shared thoroughly around web design blogs and between social networking groups. Here we have a great collection of the most popular [...]]]></description>
			<content:encoded><![CDATA[<p>Alongside jQuery <a title="mootools" href="http://blogfreakz.com/category/mootools/" target="_blank"><strong>MooTools</strong></a> is possibly one of the most comprehensive <a title="javascript" href="http://blogfreakz.com/category/javascript/" target="_blank">JavaScript</a> libraries to date. The package not only offers exceptional documentation but developers are able to create plugins running off MooTools. These have been shared thoroughly around web design blogs and between social networking groups.</p>
<p>Here we have a great collection of the most popular plugins for MooTools. The range includes UI elements, graphs and canvas creation, image cropping, dropdown menus, animation effects, and so much more! For more info check out the <a rel="nofollow" href="http://mootools.net/forge/">MooTools Forge Page</a> on further documentation.</p>
<p><span id="more-14468"></span></p>
<h3><a rel="nofollow" href="http://woork.blogspot.com/2008/03/two-css-vertical-menu-with-showhide.html">Vertical CSS Show/Hide Menus</a></h3>
<p><a rel="nofollow" href="http://woork.blogspot.com/2008/03/two-css-vertical-menu-with-showhide.html"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/showhide-boxes.jpg" alt="showhide boxes 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>The Vertical menu was created with a toggle switch between states. There is an active and hidden view which displays between a calming transition effect. All code is written standard through MooTools and works simply by including the project files.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/skype-mootools">Skype-style Buttons with MooTools</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/skype-mootools"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/skype-button.jpg" alt="skype button 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Here you are able to create a unique Skype-style button set for MooTools. The demo requires just a bit of CSS and some <a rel="nofollow" href="http://davidwalsh.name/dw-content/skype-button.png">external images</a> to wrap everything together. This effect will allow for great contact fields.</p>
<h3><a rel="nofollow" href="http://projects.adamnfish.com/panorama/">Pamoorama</a></h3>
<p><a rel="nofollow" href="http://projects.adamnfish.com/panorama/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/pamoorama.jpg" alt="pamoorama 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>A very creative JavaScript class built on the mootools framework. Here you create a fielding box to house your image and allow the user to drag and drop positioning. Dragging from right to left will move the view between areas on the picture. This effect only works on larger images and has been tested in mostly all modern browsers.</p>
<h3><a rel="nofollow" href="http://kroppr.rborn.info/">Kroppr</a></h3>
<p><a rel="nofollow" href="http://kroppr.rborn.info/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/kroppr.jpg" alt="kroppr 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Ever seen the cropping effects for avatars or profile pictures in social networking applications? These have been developed over time and refined through 3rd party libraries. With Kroppr you are able to add these effects through MooTools and create your own dynamic image cropping script!</p>
<h3><a rel="nofollow" href="http://www.copix.org/index.php/wiki/Mootools/Charts/en">MooTools Charts</a></h3>
<p><a rel="nofollow" href="http://www.copix.org/index.php/wiki/Mootools/Charts/en"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/copix3.jpg" alt="copix3 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>With MooTools Charts you have the ability to draw data on the fly. These graphics include datasets for digital graphics such as bar, pie, plot-point or tables. The framework is very detailed and contains thorough documentation on their functions.</p>
<h3><a rel="nofollow" href="http://iaian7.com/webcode/mediaboxAdvanced">Mediabox Advanced</a></h3>
<p><a rel="nofollow" href="http://iaian7.com/webcode/mediaboxAdvanced"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/mediaboxadvanced.jpg" alt="mediaboxadvanced 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>I&#8217;m sure most are familiar with the popular lightbox plug-in for the jQuery library. Mediabox Advanced is a step up offering huge potential for in-page fade in popups. You can store all types of data and you control all settings for each box. Content includes videos, text, external pages, any many other media types.</p>
<h3><a rel="nofollow" href="http://digitarald.de/project/autocompleter/">AutoCompleter</a></h3>
<p><a rel="nofollow" href="http://digitarald.de/project/autocompleter/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/autocompleter.jpg" alt="autocompleter 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>AutoCompleter is a newer plugin under development in Germany. It allows you to create a search bar autocomplete function which matches that of Google Instant. This promotes growth in many areas and with Ajax calls being easier than ever implementation is a snap.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/facebook-sliders-with-mootools-and-css-now-with-image-generation">Facebook Sliders with MooTools</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/facebook-sliders-with-mootools-and-css-now-with-image-generation"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/facebook-sliders.jpg" alt="facebook sliders 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Facebook has offered many custom UI elements since launching its new design just a year or 2 prior. Here David Walsh goes over a very simple tutorial for developing a MooTools plugin for UI elements. The design mirrors that of Facebook&#8217;s sliders and gives precise control to user input fields.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/smooth-scroll-mootools">SmoothScroll</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/smooth-scroll-mootools"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/smoothscroll.jpg" alt="smoothscroll 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Smooth scroll is a versatile plugin useful for many web designers. Utilizing DOM functionality in MooTools you can create a smoothing effect with each mouse scroll. This isn&#8217;t supported in all browsers, although results produced turn out fantastic in all the demos I&#8217;ve tried.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/iphone-checkboxes-mootools">iPhone Checkboxes</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/iphone-checkboxes-mootools"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/iphone-checkboxes.jpg" alt="iphone checkboxes 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Also developed by David Walsh is this great collection of iPhone checkboxes. These are all created using some basic HTML and CSS markup to cleverly decorate form input fields. From here MooTools can check the element&#8217;s state and change each from on to off based on a mouseclick event handler.</p>
<h3><a rel="nofollow" href="http://www.omnisdata.com/omnigrid/">OmniGrid</a></h3>
<p><a rel="nofollow" href="http://www.omnisdata.com/omnigrid/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/omnigrid.jpg" alt="omnigrid 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Here we have another advanced data grid plugin. This allows you to manipulate input data (even from RSS or Atom feeds) and plug in to dynamic data fields. You are able to create tables on-the-fly with custom scrollbars and sorting functionality for columns.</p>
<h3><a rel="nofollow" href="http://sixrevisions.com/freebies/scripts/imagecaption-a-mootools-plugin-for-auto-captioning-images/">ImageCaption</a></h3>
<p><a rel="nofollow" href="http://sixrevisions.com/freebies/scripts/imagecaption-a-mootools-plugin-for-auto-captioning-images/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/imagecaption.jpg" alt="imagecaption 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Image Caption is a very handy function for all MooTools enthusiasts. You are able to add a unique custom caption beneath each image without wrecking the page flow on your site. Each image is given a small padding area and all content is customized beforehand with careful CSS techniques.</p>
<h3><a rel="nofollow" href="http://stoutlabs.com/blog/view/updated_mootools_content_slider_class_v2">Content Slider Class v2</a></h3>
<p><a rel="nofollow" href="http://stoutlabs.com/blog/view/updated_mootools_content_slider_class_v2"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/contentslider-class.jpg" alt="contentslider class 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>This is a simple plugin with features allowing to create content sliders in-page. HTML doesn&#8217;t offer many solutions and plain JavaScript can get messy. MooTools handles this nicely and with some recent alterations the Slider Class v2 contains many bug fixes and new features.</p>
<h3><a rel="nofollow" href="http://woork.blogspot.com/2009/01/ultra-versatile-slider-for-websites.html">Ultra-Versatile Slider</a></h3>
<p><a rel="nofollow" href="http://woork.blogspot.com/2009/01/ultra-versatile-slider-for-websites.html"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/versatile-slider.jpg" alt="versatile slider 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Although similar as above this plugin was developed from Antonio Lupetti of Woork. Ultra-Versatile Slider is yet another great content slider plug-in with support for custom HTML elements. All of the code is documented and throughout the post Antonio explains many of the key points at integrating the plugin.</p>
<h3><a rel="nofollow" href="http://www.moonkiki.com/moonkiki/moogenda/">Moogenda</a></h3>
<p><a rel="nofollow" href="http://www.moonkiki.com/moonkiki/moogenda/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/moogenda.jpg" alt="moogenda 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>There aren&#8217;t many powerful apps allowing you to run your own dynamic calendar online. Moogenda does just this in a very sophisticated way &#8211; all through the power of the MooTools framework! The plugin allows for events to be posted and edited and custom scope can be set between year/month/day views.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/custom-missing-image">Custom Missing Image</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/custom-missing-image"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/custom-missingimages.jpg" alt="custom missingimages 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Most browsers are known for their &#8220;image not found&#8221; graphics. The small red x from Internet Explorer is the most prominent memory of this. This plugin runs off MooTools to counter the browser&#8217;s missing image and replace with one of your own choosing. Although not very practical it can provide a nice branding effect not seen in many sites today.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/mootools-twitter-plugin">TwitterGlitter</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/mootools-twitter-plugin"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/twitterglitter.jpg" alt="twitterglitter 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Here is one of the few plugins to connect into an external API. By pulling data from your Twitter feed you are able to manipulate the tweets into your own board. This plugin works under its own class of functions and can be shared between documents with ease.</p>
<h3><a rel="nofollow" href="http://net.tutsplus.com/tutorials/php/twitter-emulation-using-mootools-12-and-php/">Twitter Emulation with MooTools 1.2</a></h3>
<p><a rel="nofollow" href="http://net.tutsplus.com/tutorials/php/twitter-emulation-using-mootools-12-and-php/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/twitter-clone.jpg" alt="twitter clone 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Another great Twitter tool based in JavaScript and powered by MooTools. This Twitter emulator not only works quickly but offers extensive documentation into the unknown functionality. I wouldn&#8217;t recommend one plugin over another, rather test both out and see which you prefer.</p>
<h3><a rel="nofollow" href="http://woork.blogspot.com/2008/07/fantastic-news-ticker-newsvine-like.html">Newsvine-Style News Ticker</a></h3>
<p><a rel="nofollow" href="http://woork.blogspot.com/2008/07/fantastic-news-ticker-newsvine-like.html"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/newsvine-ticker.jpg" alt="newsvine ticker 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>We&#8217;ve all seen news ticker feeds and open source projects pooling search results. Newsvine is prominently known for showcasing a fastidious and impressive news feed ticker. Using this plugin you are able to create and pull RSS data into a Newsvine-like feed ticker for your own website!</p>
<h3><a rel="nofollow" href="http://www.outcut.de/MooFlow/example-skin.html">MooFlow</a></h3>
<p><a rel="nofollow" href="http://www.outcut.de/MooFlow/example-skin.html"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/mooflow.jpg" alt="mooflow 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Similar to cover flow for the iTunes store, MooFlow is a clone script creating the same effect. MooTools has a powerful graphics library so manipulating the animation and scroll bar are the only convoluted tasks involved.</p>
<h3><a rel="nofollow" href="http://www.digitalia.be/software/reflectionjs-for-mootools">Reflections</a></h3>
<p><a rel="nofollow" href="http://www.digitalia.be/software/reflectionjs-for-mootools"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/reflection-mootools.jpg" alt="reflection mootools 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Yet another great effect taken from the marketing strategies of Apple Computers. Image reflections are popular in web 2.0 design and it&#8217;s been created in the past through Flash and Java applets. Now JavaScript allows you to create such a run with the Reflections plugin through MooTools.</p>
<h3><a rel="nofollow" href="http://web-kreation.com/tutorials/morph-effect-on-mouseenter-mouseleave-with-mootools-12/">Morph Effect On Mouseenter/Mouseleave</a></h3>
<p><a rel="nofollow" href="http://web-kreation.com/tutorials/morph-effect-on-mouseenter-mouseleave-with-mootools-12/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/morph-effect.jpg" alt="morph effect 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Event handlers are some of the most important events for MooTools activists. Here we are checking for a mouse over event which morphs content underneath the container division. This isn&#8217;t an entirely useful plugin, but it does provide some nice aesthetics.</p>
<h3><a rel="nofollow" href="http://davidwalsh.name/mootools-google-analytics-track-outbound-links">Track Outbound Analytics Links</a></h3>
<p><a rel="nofollow" href="http://davidwalsh.name/mootools-google-analytics-track-outbound-links"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/google-analytics.jpg" alt="google analytics 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Google Analytics is also another favorite client of mine. Tracking traffic data is simple with this MooTools plugin. You are able to see how many visitors are clicking your links and which are the most popular. This can be combined with other graphics and maths plugins to create your own graph representing website traffic data.</p>
<h3><a rel="nofollow" href="http://icebeat.bitacoras.com/mootools/growl/">Window Growl</a></h3>
<p><a rel="nofollow" href="http://icebeat.bitacoras.com/mootools/growl/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/windowgrowl.jpg" alt="windowgrowl 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Window Growl is a competitive plugin for MooTools similar to lightbox. This is a much simpler effect which can pop up mid-screen or into a corner of the page with a short amount of information. This is great for letting the user know you&#8217;ve saved their profile settings or updated a small piece of the web page.</p>
<h3><a rel="nofollow" href="http://mifjs.net/tree/">MIF Tree</a></h3>
<p><a rel="nofollow" href="http://mifjs.net/tree/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/mif-tree.jpg" alt="mif tree 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Tree structures are very difficult to create in HTML and even with HTML5/CSS3 standards things are still difficult. MIF Tree is a MooTools plugin allowing you to create tree directories on-the-fly. These will display properly in browser and are even open for edits to folders and file names.</p>
<h3><a rel="nofollow" href="http://www.artviper.net/website-tools/moosocialize-ajax-bookmark-widget.php">mooSocialize</a></h3>
<p><a rel="nofollow" href="http://www.artviper.net/website-tools/moosocialize-ajax-bookmark-widget.php"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/moosocialize.jpg" alt="moosocialize 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Social media sharing buttons are all the rage. You can see badges sewn across blogs throughout Google and beyond. mooSocialize is a unique plugin which contains all the sharing code needed for dozens of popular social media apps. The sharing widget is powered through MooTools and features custom input functionality.</p>
<h3><a rel="nofollow" href="http://www.php-help.ro/mootools-12-javascript-examples/wordpress-271-featured-articles-plugin/">WP Tools</a></h3>
<p><a rel="nofollow" href="http://www.php-help.ro/mootools-12-javascript-examples/wordpress-271-featured-articles-plugin/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/wp-mootools.jpg" alt="wp mootools 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>WP Tools is a great set of DOM effects for manipulating popular WordPress elements. The plugin lets you change site appearance and CSS documents on the fly &#8211; or even update them with the passing of each day (morning to night). There are plenty of options and effects to mess around with. Check the documentation link for further info.</p>
<h3><a rel="nofollow" href="http://web-kreation.com/wordpress/add-a-showhide-login-panel-to-your-wordpress-theme-using-mootools/">Sliding Login Panel</a></h3>
<p><a rel="nofollow" href="http://web-kreation.com/wordpress/add-a-showhide-login-panel-to-your-wordpress-theme-using-mootools/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/sliding-login.jpg" alt="sliding login 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Just another popular sliding login panel. Powered by MooTools many of the animation effects are clean and browser friendly. Although not as popular as the earlier page slider, this does contain more room for visitors to browse while staying unobtrusive to the reader.</p>
<h3><a rel="nofollow" href="http://mootools.floor.ch/en/">MooTools.Floor</a></h3>
<p><a rel="nofollow" href="http://mootools.floor.ch/en/"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/moofloor-library.jpg" alt="moofloor library 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Math isn&#8217;t always everybody&#8217;s favorite task. When developing with math problems often times we ask ourselves why even bother? MooTools.Floor is a revolutionary new platform which allows for complex mathematical manipulation to be performed quickly and efficiently. The project is still under active development and offered free to download.</p>
<h3><a rel="nofollow" href="http://www.byscripts.info/javascript/mootools-plugins/accordion-menu/byslidemenu.html">BySlideMenu</a></h3>
<p><a rel="nofollow" href="http://www.byscripts.info/javascript/mootools-plugins/accordion-menu/byslidemenu.html"><img src="http://blogfreakz.com/wp-content/uploads/2011/01/slide-tabs.jpg" alt="slide tabs 30 All Time Greatest MooTools Plugins"  title="30 All Time Greatest MooTools Plugins" /></a></p>
<p>Just another slider menu? Actually here we are working with a simple slide effect which can be used to house menu items. These could also be tabs inside a sliding content box which houses individual page items. Either way give it a try &#8211; just remember to install MooTools before activating!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="mootools plugins 2011">mootools plugins 2011</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="best mootools plugins">best mootools plugins</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="mootools plugins">mootools plugins</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="mootools time slider">mootools time slider</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="mootools time">mootools time</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="mootools plugin 2011">mootools plugin 2011</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="light mootools carousel">light mootools carousel</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="best mootools plugins 2011">best mootools plugins 2011</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="best mootools">best mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/" title="mootools fly effect">mootools fly effect</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/30-all-time-greatest-mootools-plugins/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MooPlay &#8211;  Build Your Own Custom HTML5 Video Player</title>
		<link>http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/</link>
		<comments>http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 03:09:16 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Video Players]]></category>
		<category><![CDATA[video players]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13462</guid>
		<description><![CDATA[MooPlay is a set of controls, built on top of MooTools that allow Us to build and customize HTML5 Video player. MooPlay support for subtitles which is  loaded through an ajax request and synchronized with the video. Supported formats are SubRip (.srt) and SubViewer (.sub). You can also switch the view to fullscreen and vice [...]]]></description>
			<content:encoded><![CDATA[<p><a title="MooPlay" href="http://mooplay.challet.eu/" target="_blank">MooPlay</a> is a set of controls, built on top of MooTools that allow Us to build and customize HTML5 Video player. MooPlay support for subtitles which is  loaded through an ajax request and synchronized with the video. Supported formats are SubRip (.srt) and SubViewer (.sub). You can also switch the view to fullscreen and vice versa.</p>
<p><span id="more-13462"></span><a rel="nofollow" href="http://mooplay.challet.eu/"><img class="alignnone size-full wp-image-13471" title="MooPlay" src="http://blogfreakz.com/wp-content/uploads/2010/12/MooPlay.jpg" alt="MooPlay MooPlay    Build Your Own Custom HTML5 Video Player" width="600" height="366" /></a></p>
<h3>Features</h3>
<ul>
<li>a play / pause control</li>
<li>buttons to move inside the video (rewind and fast forward)</li>
<li>an interactive play progress slider</li>
<li>a load progress bar</li>
<li>a volume slider and a mute button</li>
<li>subtitles loaded through an ajax request and  synchronized with the video. Supported formats are SubRip (.srt) and  SubViewer (.sub)</li>
<li>full page display</li>
<li>current and/or remaining time</li>
</ul>
<p>The video element methods can be called by other scripts, MooPlay objects will adapt themself to any state changes. About a hundred tests are running on each new step, to make sure all the functionnalities are still available.</p>
<p class="download"><strong>Requirements</strong>: MooTools, Modern Browser<br />
<strong>Demo</strong>: <a title="MooPlay" rel="nofollow" href="http://mooplay.challet.eu/" target="_blank">http://mooplay.challet.eu</a>/<br />
<strong>License</strong>: GPL License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="video play bar">video play bar</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="mooplay">mooplay</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="make your own html5 player">make your own html5 player</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="video player buttons">video player buttons</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="video player button">video player button</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="play progress">play progress</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="mooplay wordpress">mooplay wordpress</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="mooplay player">mooplay player</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="video play buttons">video play buttons</a></li>
<li><a href="http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/" title="html5 slider">html5 slider</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/html5/mooplay-build-your-own-custom-html5-video-player/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MooTune &#8211; MooTools Class For Logging Events, Errors &amp; AB Tests</title>
		<link>http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/</link>
		<comments>http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 15:18:08 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[analytic]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13168</guid>
		<description><![CDATA[MooTune is  MooTools class for logging events, errors and AB tests to multiple backends such as Google Analytics, Mixpanel or your own server logs. It can be used to gain insights into the actions your user&#8217;s take on your site, the errors they encounter and the affect of variations on the site with their interactions. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="MooTune" rel="nofollow" href="https://github.com/3n/MooTune/" target="_blank">MooTune</a> is  MooTools class for logging events, errors and AB tests to multiple backends such as Google Analytics, Mixpanel or your own server logs. It can be used to gain insights into the actions your user&#8217;s take on your site, the errors they encounter and the affect of variations on the site with their interactions.</p>
<p><span id="more-13168"></span></p>
<p><a rel="nofollow" href="https://github.com/3n/MooTune/"><img class="alignnone size-full wp-image-13174" title="mootune" src="http://blogfreakz.com/wp-content/uploads/2010/12/mootune.jpg" alt="mootune MooTune   MooTools Class For Logging Events, Errors & AB Tests " width="600" height="390" /></a></p>
<p>To implement MooTune, you need to setup the tracking scripts for the backend services you&#8217;d like to use (e.g Google Analytics, Mixpanel). Once you create an instance of MooTune, you can add calls to myMooTune.handleEvent(obj) in your code wherever something happens that you&#8217;d like to log to your backend(s). For each call to handleEvent, MooTune will send the appropriate call to all of the backends you have specified.</p>
<p>MooTune supports a simple method for doing A/B (split) testing. Actually, it&#8217;s multivariate (as many options as you want). When instantiating MooTune, pass in an array of tests.</p>
<p class="download"><strong>Requirements</strong>: MooTools Framework, tracking scripts (e.g Google Analytics, Mixpanel)<br />
<strong>Demo</strong>: <a title="MooTune" rel="nofollow" href="https://github.com/3n/MooTune/" target="_blank">https://github.com/3n/MooTune/</a><br />
<strong>License</strong>: Other License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="mootune">mootune</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="MooTune demo">MooTune demo</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="mootools audio player">mootools audio player</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="a/b test mootools">a/b test mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="wordpress mootools errors">wordpress mootools errors</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="ruby logging events tracker">ruby logging events tracker</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="mootools sound event">mootools sound event</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="mootools logging">mootools logging</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="mootools event timeline">mootools event timeline</a></li>
<li><a href="http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/" title="mootools class events">mootools class events</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/mootune-mootools-class-for-logging-events-errors-ab-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MooVES &#8211; MooTools Video Enhancement System</title>
		<link>http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/</link>
		<comments>http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 16:23:49 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Video Players]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=12042</guid>
		<description><![CDATA[MooVES is The MooTools Video Enhancement System, a plug-in for MooTools (1.2+ or 1.3+) which allows a preview video from many video types: YouTube, Vimeo, Dailymotion, Blip.tv etc. It supports also HTML5 video tag features. The plug-in is unobtrusive and displays the link to the video and a notice message when JavaScript or Adobe Flash [...]]]></description>
			<content:encoded><![CDATA[<p><strong>MooVES</strong> is The MooTools Video Enhancement System, a plug-in for <strong>MooTools</strong> (1.2+ or 1.3+) which allows a preview video from many video types: YouTube, Vimeo, Dailymotion, Blip.tv etc. It supports also HTML5 video tag features. The plug-in is <strong>unobtrusive</strong> and displays the link  to the video and a notice message when JavaScript or Adobe Flash Player  are not enabled in the user&#8217;s system.</p>
<p><span id="more-12042"></span><a rel="nofollow" href="http://mooves.firebuntu.com"><img class="alignnone size-full wp-image-12043" title="mooves" src="http://blogfreakz.com/wp-content/uploads/2010/11/mooves.jpg" alt="mooves MooVES   MooTools Video Enhancement System" width="600" height="394" /></a></p>
<p>The class is <strong>extensible</strong>, you can integrate other video sharing websites and network. It is completely <strong>customizable</strong>.</p>
<p class="download"><strong>Requirements</strong>: MooTools(1.2+ or 1.3+)<br />
<strong>Demo</strong>: <a title="mooves" rel="nofollow" href="http://mooves.firebuntu.com" target="_blank">http://mooves.firebuntu.com</a><br />
<strong>License</strong>: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mooves">mooves</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="video enhancement">video enhancement</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mootools video player">mootools video player</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mootools video">mootools video</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mootool video gallery">mootool video gallery</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mootools video gallery">mootools video gallery</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="free mootools video player">free mootools video player</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="video gallery mootools">video gallery mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mooves com">mooves com</a></li>
<li><a href="http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/" title="mooves firebuntu com">mooves firebuntu com</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/mooves-mootools-video-enhancement-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purr &#8211; MooTools Growl-Style Pop-Up Notifications</title>
		<link>http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/</link>
		<comments>http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 11:15:56 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Light Box]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=11364</guid>
		<description><![CDATA[Purr is an advanced MooTools notifications class that allows you to show growl-style pop-up notifications. It also provides Elements.alert() to allow a notification to be popped above of an existing element. This notification plugin can be used to show any kind of notifications on web pages using custom positioned modal windows. You can dismiss the [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Pur" rel="nofollow" href="http://github.com/re5et/purr" target="_blank">Purr</a> is an advanced <strong>MooTools notifications</strong> class that allows you to show  growl-style <strong>pop-up notifications</strong>.  It also provides Elements.alert() to  allow a notification to be popped above of an existing element.</p>
<p><span id="more-11364"></span></p>
<p><a rel="nofollow" href="http://re5et.github.com/projects/purr/demo"><img class="aligncenter size-full wp-image-11371" title="pur" src="http://blogfreakz.com/wp-content/uploads/2010/10/pur.jpg" alt="pur Purr   MooTools Growl Style Pop Up Notifications" width="600" height="220" /></a></p>
<p>This notification plugin can be used to show any kind of notifications on web pages using custom positioned modal windows. You can dismiss the message by clicking on it. You can also add extra class on message box for styling purpose.</p>
<p class="download"><strong>Requirements</strong>: MooTools Framework<br />
<strong>Demo</strong>: <a rel="nofollow" href="http://re5et.github.com/projects/purr/demo/" target="_blank">http://re5et.github.com/projects/purr/demo/</a><br />
<strong>License</strong>: Free License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="mootools popup">mootools popup</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="growl style">growl style</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="popup mootools">popup mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="mootools growl">mootools growl</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="mootools notification">mootools notification</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="purr mootools">purr mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="mootools purr">mootools purr</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="mootools pop up">mootools pop up</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="pop mootools">pop mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/" title="mootools Popup demo">mootools Popup demo</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/purr-mootools-growl-style-pop-up-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

