<?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>iBlog random &#187; mootools</title>
	<atom:link href="http://blog.zurka.us/tag/mootools/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.zurka.us</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 28 May 2013 20:28:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6</generator>
		<item>
		<title>Change the location of your external links with MooTools</title>
		<link>http://blog.zurka.us/change-location-your-external-links-mootools/</link>
		<comments>http://blog.zurka.us/change-location-your-external-links-mootools/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 18:02:52 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=1050</guid>
		<description><![CDATA[So a thing I was trying to do for quite some time now but using php and rexep, which I hate and don&#8217;t understand at all, was trying to change the location (href) of all the external links on my page to something else so I could easily track the clicks. Or maybe display some [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fchange-location-your-external-links-mootools%2F&title=Change+the+location+of+your+external+links+with+MooTools&desc=So+a+thing+I+was+trying+to+do+for+quite+some+time+now+but+using+php+and+rexep%2C+which+I+hate+and+don%27t+understand+at+all%2C+was+trying+to+change+the+location+%28href%29+of+all+the+external+links+on+my+page+to+something+else+so+I+could+easily+track+the+clicks.+Or+maybe+display+some+kind+of+toolbar+on+top+of&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>So a thing I was trying to do for quite some time now but using php and rexep, which I hate and don&#8217;t understand at all, was trying to <strong>change the location</strong> (href) <strong>of all the external links</strong> on my page to something else so I could easily <strong>track</strong> the clicks. Or maybe display some kind of toolbar on top of the page, something like I guess digg does.</p>
<p>Today I remembered that <a href="http://mootools.net/">MooTools</a> is my friend and I could use it to accomplish this.. and after 2 minutes and 5 lines of code I did it!</p>
<p>I&#8217;m guessing you already have <a href="http://mootools.net/">MooTools</a> up and running. Let&#8217;s take a look at the code.</p>
<pre class="brush: php">
$$(&#039;a&#039;).each(function(link) {
    if(link.hostname != window.location.host) {
        var loc = link.get(&#039;href&#039;);
        link.set(&#039;href&#039;, &#039;./out.php?&#039; + loc);
    }
});
</pre>
<p>So we create an <strong>array of all the links</strong> on our site and check if their <strong>hostname</strong> is the same as the hostname of our site. If it is different we <strong>read the value</strong> of href (the link) and change it to <strong>our php</strong> script that is going to track the click (or whatever) and add the previous link, so it knows where it should be redirected.</p>
<p>This is it! Easy peasy!</p>
<p>Oh and have a happy December!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/change-location-your-external-links-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create A Sliding AD Showing Up From The Bottom *upd 15.06.2009*</title>
		<link>http://blog.zurka.us/create-sliding-ad-showing-from-bottom/</link>
		<comments>http://blog.zurka.us/create-sliding-ad-showing-from-bottom/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:57:31 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=896</guid>
		<description><![CDATA[Did you ever want to do something like this? An ad showing from the bottom of the screen? Well, today I&#8217;m going to show you how to do it, without the need to spend $47 Yay! We are going to do reproduce this by using mootools and some styling. Again, it&#8217;s an easy thing to [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fcreate-sliding-ad-showing-from-bottom%2F&title=Create+A+Sliding+AD+Showing+Up+From+The+Bottom+%2Aupd+15.06.2009%2A&desc=Did+you+ever+want+to+do+something+like+this%3F+An+ad+showing+from+the+bottom+of+the+screen%3F+Well%2C+today+I%27m+going+to+show+you+how+to+do+it%2C+without+the+need+to+spend+%2447+%3AD+Yay%21+We+are+going+to+do+reproduce+this+by+using+mootools+and+some+styling.+Again%2C+it%27s+an+easy+thing+to+make.+Let%27s+start+by&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>Did you ever want to do something like <a href="http://ultimatefooterad.com/v/index.php">this</a>? An ad showing from the bottom of the screen?</p>
<p>Well, today I&#8217;m going to show you how to do it, without the need to spend $47 <img src='http://blog.zurka.us/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Yay!</p>
<p>We are going to do reproduce <a href="http://blog.zurka.us/wp-content/uploads/2009/04/slidingad1.html">this</a> by using <a href="http://www.mootools.net">mootools</a> and some styling. Again, it&#8217;s an easy thing to make.</p>
<p>Let&#8217;s start by including mootools in our document and writing a little script that will basically do all the job that need to be done. This goes into the &lt;head&gt; of our html file.</p>
<pre class="brush: html">&lt;script src=&quot;inc/mootools-1.2.1-core.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>
<pre class="brush: js">
&lt;script&gt;
    window.addEvent(&#039;domready&#039;, function() {
        slideUp = new Fx.Tween(&#039;footerad&#039;, { property: &#039;height&#039;, duration: 1000 });
        (function(){ slideUp.start(0, 90) }).delay(&#039;1000&#039;);
        $(&#039;closead&#039;).addEvent(&#039;click&#039;, function() {
            $(&#039;footerad&#039;).tween(&#039;height&#039;, 0);
        });
});
&lt;/script&gt;
</pre>
<p>Let&#8217;s analyse the script:</p>
<ol>
<li>When the DOM is ready, execute the following function:</li>
<li>slideUp is the variable in which we &#8216;store&#8217; the motion of our sliding div. We give a tween effect to our element with &#8216;footerad&#8217; as ID</li>
<li>Next, we make the function execute after 1 second (1000ms) and make it raise the height from 0px to 90px. This is going to be the height of our slider on the bottom</li>
<li>Now, we add a button that will close the ad if clicked. We could do something more complicated here by adding some code that would write a cookie so the ad doesn&#8217;t show up again if the user reloads the page but we don&#8217;t need it, we want to bug the user, right?</li>
</ol>
<p>Now that&#8217;s it with the script. All we need to do now is create or DIV element (if you go check out the page at the top of this post you will see they use an IFRAME.. I&#8217;m not going to use it).</p>
<p>Now, I think that if you don&#8217;t understand how DIV&#8217;s work you won&#8217;t understand a shit here. Feel free to ask for further explanation in the comments. Oh and I will style the divs directly here, without a css file, so we see how it works.</p>
<pre class="brush: html">
&lt;div id=&quot;footerad&quot; style=&quot;display: block; position: fixed; bottom: 0; left: 0; width: 100%; height: 0;&quot;&gt;
    &lt;div style=&quot;position: relative; left: 0; bottom: 0;&quot; id=&quot;positioned_relatively&quot;&gt;
        &lt;div style=&quot;background: #002949; border-top: solid 3px #3b8ccb; position: absolute; top: 15px; left: 0; width: 100%; height: 75px; color: white;&quot; id=&quot;background_color&quot;&gt;
            &lt;img src=&quot;http://server.zurka.us/images/RSS-Blue.png&quot; style=&quot;position: absolute; left: 20px; top: -15px;&quot; id=&quot;RSS_icon&quot; /&gt;
            &lt;div style=&quot;margin: 10px 0 5px 105px;&quot; id=&quot;text_div&quot;&gt;
                &lt;div style=&quot;font-size: 15px; margin-bottom: 7px; font-family: &#039;trebuchet ms&#039;, arial, sans-serif;&quot;&gt;This is a test, the form is not working!&lt;/div&gt;
                &lt;div style=&quot;font-size: 12px;&quot;&gt;Name: &lt;input type=&quot;text&quot; name=&quot;name&quot; style=&quot;margin-right: 10px;&quot; /&gt; Email: &lt;input type=&quot;text&quot; name=&quot;email&quot; style=&quot;margin-right: 10px;&quot; /&gt; &lt;input type=&quot;submit&quot; value=&quot;Subscribe!&quot; /&gt;&lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;div style=&quot;position: absolute; right: 5px; top: 0; font-size: 11px;&quot; id=&quot;close_button&quot;&gt;
            &lt;a href=&quot;#&quot; id=&quot;closead&quot;&gt;[close]&lt;/a&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<ol>
<li>We give the <strong>first DIV</strong> the <strong>ID &#8216;footerad&#8217;</strong>, since that&#8217;s the id we told the script to show when the dom is ready. We style it so it will cover <strong>100% of the width</strong>, will be <strong>0px high</strong> (the script is going to increase the height with a nice movement) and we make it stay <strong>fixed at the bottom of the page</strong>. The background of this element is not set, so it will be transparent.</li>
<li>The <strong>second DIV</strong> stays there only because we need a <strong>relatively positioned</strong> element so we can absolute position other elements inside it.</li>
<li>The <strong>third div</strong> we give a background color and a border on the top, we position <strong>absolutely</strong>, <strong>0px from the left so it sticks left and 15px from the top</strong> so we have some transparent background on top of it (the RSS or whatever icon will look like it&#8217;s coming out of the slider)</li>
<li>Now it&#8217;s time to position our <strong>rss icon</strong>. We position it <strong>absolutely </strong>and move it <strong>20px from the left and -15px from the top</strong> (this is why we positioned the third div 15px from the top).</li>
<li>We make a <strong>fifth div</strong> with the text and our form. We could position it absolutely but I decided to position it using <strong>margins</strong>. So we move it <strong>10px from the top and 105px from the left</strong> of the screen (because there&#8217;s the icon)</li>
<li>We <strong>close this div and make a new one, positioned absolutely, 5px from the right and 0px from the top</strong>, this will be out <strong>close button</strong>. We make a link and give it the ID &#8216;closead&#8217;</li>
<li>We close every div tag. It&#8217;s <strong>done</strong></li>
</ol>
<p>Now, as I said, I maybe made a complete confusion writing this. If you don&#8217;t understand how this works ask and I will help you out. If you don&#8217;t care how this works just copy/paste the code and play a bit with the styling. It&#8217;s not hard to understand even if you don&#8217;t read my messy writing.</p>
<p>What&#8217;s different from <a href="http://ultimatefooterad.com/v/index.php">this</a> is, that they use a wider image on the left and everything seems more centered. You could do the same by positioning the icon further from the left and then giving your text div a bigger margin on the left.</p>
<p>Have a nice day and go drink some beer with the $47 you just saved!</p>
<p><a href="http://blog.zurka.us/wp-content/uploads/2009/04/slidingad1.html">Live example</a></p>
<p><em>As IE does NOT support the use of the CSS position: fixed; property, I found a workaround that works in all browsers but which I didn&#8217;t test with other content on the page. The demo is still using the old code, displaying well in all the browsers except IE. This code will work there as well.</em></p>
<pre class="brush: html">
&lt;body style=&quot;margin: 0; padding: 0;&quot;&gt;
    &lt;div style=&quot;position: relative; width: 100%; height: 100%;&quot;&gt;
        &lt;div id=&quot;footerad&quot; style=&quot;display: block; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;&quot;&gt;
            &lt;div style=&quot;position: relative; left: 0; bottom: 0;&quot;&gt;
                &lt;div style=&quot;position: absolute; background: #002949; border-top: solid 3px #3b8ccb; top: 15px; left: 0; width: 100%; height: 75px; color: white;&quot;&gt;
                    &lt;img src=&quot;http://server.zurka.us/images/RSS-Blue.png&quot; style=&quot;position: absolute; left: 20px; top: -15px;&quot; /&gt;
                    &lt;div style=&quot;margin: 10px 0 5px 105px;&quot;&gt;
                        &lt;div style=&quot;font-size: 15px; margin-bottom: 7px; font-family: &#039;trebuchet ms&#039;, arial, sans-serif;&quot;&gt;This is a test, the form is not working!&lt;/div&gt;
                        &lt;div style=&quot;font-size: 12px;&quot;&gt;Name: &lt;input type=&quot;text&quot; name=&quot;name&quot; style=&quot;margin-right: 10px;&quot; /&gt; Email: &lt;input type=&quot;text&quot; name=&quot;email&quot; style=&quot;margin-right: 10px;&quot; /&gt; &lt;input type=&quot;submit&quot; value=&quot;Subscribe!&quot; /&gt;&lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div style=&quot;position: absolute; right: 5px; top: 0; font-size: 11px;&quot;&gt;
                    &lt;a href=&quot;#&quot; id=&quot;closead&quot;&gt;[close]&lt;/a&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/body&gt;
</pre>
<p>All that changes is that we create a dummy div with a 100% height and position the ad absolutely on it&#8217;s bottom. Should work well with all the content as well, but as I said, I didn&#8217;t test it.</p>
<p>However, I suggest you using this with caution and parse it only if the useragent shows up to be an IE. Create two different CSS files and use something like this:</p>
<pre class="brush: html">
&lt;style type=&#039;text/css&#039;&gt;@import &#039;all.css&#039;;&lt;/style&gt;
&lt;!--[if IE]&gt;
&lt;link
 href=&#039;ie_win.css&#039;
 type=&#039;text/css&#039;
 media=&#039;screen&#039;&gt;
&lt;![endif]--&gt;
</pre>
<p>Have swing!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/create-sliding-ad-showing-from-bottom/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MooTools</title>
		<link>http://blog.zurka.us/mootools/</link>
		<comments>http://blog.zurka.us/mootools/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 13:41:35 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=871</guid>
		<description><![CDATA[I started reading some tutorials and books about this very nice and simple javascript framework, with which you can do supercool things in the browser. It&#8217;s actually pretty simple to use for simple effects and gets complex as you try to do magic with it. After reading a chapter about it&#8217;s Tween function, I decided [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fmootools%2F&title=MooTools&desc=I+started+reading+some+tutorials+and+books+about+this+very+nice+and+simple+javascript+framework%2C+with+which+you+can+do+supercool+things+in+the+browser.+It%27s+actually+pretty+simple+to+use+for+simple+effects+and+gets+complex+as+you+try+to+do+magic+with+it.+After+reading+a+chapter+about+it%27s+Tween&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>I started reading some tutorials and books about this very nice and simple <a href="http://www.mootools.net/">javascript framework</a>, with which you can do supercool things in the browser.</p>
<p>It&#8217;s actually pretty simple to use for simple effects and gets complex as you try to do magic with it.</p>
<p>After reading a chapter about it&#8217;s Tween function, I decided to make a simple menu with a simple fade animation. It&#8217;s really something for beginners, since this is what I am, a beginner.</p>
<p>We are going to do a menu with some links that change their position and color with a simple animation when we hover them. Easy peasy. <a href="http://blog.zurka.us/wp-content/uploads/2009/04/moo1.html">Check the result here</a>.</p>
<p><strong>First:</strong> we start the document as always, with a doctype (I still use the transitional xhtml) and include the framework.</p>
<pre class="brush: html">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
   &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;sl&quot; lang=&quot;sl&quot;&gt;
    &lt;head&gt;
        &lt;title&gt;MooTools&lt;/title&gt;
        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=windows-1250&quot; /&gt;
        &lt;script src=&quot;inc/mootools-1.2.1-core.js&quot;&gt;&lt;/script&gt;
</pre>
<p><strong>Second:</strong> we add an event to our <em>window</em> element which is going to start as soon as the DOM (Document Object Model &#8211; the browser) is ready (it won&#8217;t wait all the other elements to load [big, fat images, advertisments etc]).</p>
<pre class="brush: js">
&lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt;
            window.addEvent(&#039;domready&#039;, function() {

             });
&lt;/script&gt;
</pre>
<p><strong>Third:</strong> when the DOM will be ready we want it to get all the links with a specified class (I made it this way, you could easily make all the links in a specified UL or any other element behave the same way) and apply a special behaviour to them.</p>
<pre class="brush: js">
                $$(&#039;a.click&#039;).addEvents({

                    &#039;mouseover&#039;: function() {
                        this.morph({
                            &#039;padding-left&#039;: &#039;20&#039;,
                            &#039;color&#039;: [&#039;#1E0CB5&#039;, &#039;#94BB06&#039;]
                        })
                    },

                    &#039;mouseout&#039;: function() {
                        this.morph({
                          &#039;padding-left&#039;: &#039;10&#039;,
                          &#039;color&#039;: [&#039;#94BB06&#039;, &#039;#1E0CB5&#039;]
                        })
                    }

                });
</pre>
<p>As you can see, MooTools is very simple and easily understandable. Using <strong>$$(&#8216;a.click&#8217;)</strong> we create an <strong>array of all the links</strong> in our page with the <em>class=&#8221;click&#8221;</em> attribute.</p>
<p>Next, we tell the function to <a href="http://mootools.net/docs/Fx/Fx.Morph">Morph</a> the link when the mouse hovers the link and when the mouse leaves the link. We add 10px of padding on the left and change the color to green when the mouse passes over the link and restore the default values when it leaves. Easy.</p>
<p>Still in the head we apply some styles to our menu.</p>
<pre class="brush: css">
        &lt;style&gt;
            a { color: #1E0CB5; }

            #menu { list-style: none; margin: 0; padding: 0; }
            #menu li { width: 150px; background: #eee; }
            #menu li a { padding: 4px 10px; display: block; }
        &lt;/style&gt;
</pre>
<p>And now we complete our simple page.</p>
<pre class="brush: html">
    &lt;/head&gt;
    &lt;body&gt;
        &lt;h3&gt;Something nice&lt;/h3&gt;
        &lt;ul id=&quot;menu&quot;&gt;
            &lt;li&gt;&lt;a class=&quot;click&quot; href=&quot;#&quot;&gt;link&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a class=&quot;click&quot; href=&quot;#&quot;&gt;link&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a class=&quot;click&quot; href=&quot;#&quot;&gt;link&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a class=&quot;click&quot; href=&quot;#&quot;&gt;link&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre>
<p>That&#8217;s it, a nice animated menu to use on your website! If you want to see the whole code in one piece, check the source of the <a href="http://blog.zurka.us/wp-content/uploads/2009/04/moo1.html">live example</a>.</p>
<p>Hope I was clear enough.</p>
<p>I&#8217;ll write again with a new example of what I&#8217;ve learnt!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools image gallery scripts</title>
		<link>http://blog.zurka.us/mootools-image-gallery/</link>
		<comments>http://blog.zurka.us/mootools-image-gallery/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 23:23:20 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=616</guid>
		<description><![CDATA[(E)2 Photo Gallery (E)2 Photo Gallery is a open source gallery built with Mootools Javascript Library the compact, modular, Object-Oriented javascript framework. Designed to allow you to upload your photos to a desired folder, tell the (E)2 Photo Gallery what folder to look at and it will automatically load the images using PHP. noobSlide Lightweight [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fmootools-image-gallery%2F&title=Mootools+image+gallery+scripts&desc=%28E%292+Photo+Gallery+%28E%292+Photo+Gallery+is+a+open+source+gallery+built+with+Mootools+Javascript+Library+the+compact%2C+modular%2C+Object-Oriented+javascript+framework.+Designed+to+allow+you+to+upload+your+photos+to+a+desired+folder%2C+tell+the+%28E%292+Photo+Gallery+what+folder+to+look+at+and+it+will&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p><a href="http://www.e2interactive.com/e2_photo_gallery/">(E)2 Photo Gallery</a><br />
(E)2 Photo Gallery is a open source gallery built with Mootools Javascript Library the compact, modular, Object-Oriented javascript framework. Designed to allow you to upload your photos to a desired folder, tell the (E)2 Photo Gallery what folder to look at and it will automatically load the images using PHP.</p>
<p><a href="http://www.efectorelativo.net/laboratory/noobSlide/" target="_blank">noobSlide</a><br />
Lightweight class written for mootools you can use to create nice slides.</p>
<p><a href="http://smoothgallery.jondesign.net/what/">SmoothGallery</a><br />
Using mootools v1.11, this javascript gallery and slideshow system allows you to have simple and smooth (cross-fading&#8230;) image galleries, slideshows, showcases and other cool stuff on your website&#8230;</p>
<p><span id="more-616"></span></p>
<p><a href="http://www.outcut.de/MooFlow/">MooFlow</a><br />
Some of the features:<br />
autosetup graps all images inside a element,<br />
autoresize on changes of window dimensions,<br />
fullscreen option,<br />
scrolling with mouse wheel..</p>
<p><a href="http://87.230.15.86/~dado/devel/mootools/thumbnoo/">Thumbnoo</a></p>
<p><a href="http://zendold.lojcomm.com.br/icarousel/">iCasousel</a><br />
iCarousel is an open source (free) javascript tool for creating carousel like widgets.</p>
<p><a href="http://www.moopix.org/">MooPix</a><br />
Uh oh, another Javascript slideshow using a popular framework! Fear not â€” MooPix isn&#8217;t a slideshow, it&#8217;s a way for you to access your public Flickr photos without doing PHP, Ruby, or Python situps. What you do with it is your perrogative.</p>
<p><a href="http://www.electricprism.com/aeron/slideshow/">Slideshow 2</a><br />
Slideshow 2! is a javascript class for Mootools 1.2 to stream and animate the presentation of images on your website. This page features some examples of how Slideshow might be used to enhance the presentation of images on your website. Please view the source of this page for usage information.</p>
<p><a href="http://www.digitalia.be/software/slimbox">Slimbox</a><br />
Slimbox is a 4kb visual clone of the popular Lightbox JS v2.0 by Lokesh Dhakar, written using the ultra compact mootools framework. It was designed to be small, efficient, more convenient and 100% compatible with the original Lightbox v2.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/mootools-image-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
