<?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>Young Dutch Design &#187; jQuery</title>
	<atom:link href="http://youngdutchdesign.com/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://youngdutchdesign.com</link>
	<description>Young Dutch Design is a new platform for young designers with frequently new added postings about productdesign, webdesign and other related subjects.</description>
	<lastBuildDate>Fri, 27 Aug 2010 21:09:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>jsFiddle</title>
		<link>http://youngdutchdesign.com/jsfiddle</link>
		<comments>http://youngdutchdesign.com/jsfiddle#comments</comments>
		<pubDate>Fri, 27 Aug 2010 21:09:14 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=3581</guid>
		<description><![CDATA[Today I&#8217;ve finally tested jsFiddle. I&#8217;m aware of the existence quite some time now but I never took the time to checkÂ  it out. It&#8217;s a very nice shell editor with html, css and JavaScript. You don&#8217;t have to go from your code editor to your browser any more, just click run Just look at [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3584" title="Screen shot 2010-08-27 at 21.44.41" src="http://youngdutchdesign.com/wp-content/uploads/2010/08/Screen-shot-2010-08-27-at-21.44.41--300x224.png" alt="" width="300" height="224" />Today I&#8217;ve finally tested jsFiddle. I&#8217;m aware of the existence quite some time now but I never took the time to checkÂ  it out. It&#8217;s a very nice shell editor with html, css and JavaScript. You don&#8217;t have to go from your code editor to your browser any more, just click run Just look at the examples or create your own snippet or project to develop your JavaScript.</p>
<p>I&#8217;ve heard that the beta version is coming soon and there will be lot&#8217;s of new functions. For example aÂ  user login with lot&#8217;s of features.</p>
<p>Go and visit <a href="http://jsfiddle.net/" target="_blank">jsFiddle.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/jsfiddle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transitions</title>
		<link>http://youngdutchdesign.com/transitions</link>
		<comments>http://youngdutchdesign.com/transitions#comments</comments>
		<pubDate>Tue, 28 Apr 2009 00:39:32 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=1200</guid>
		<description><![CDATA[A lot of javascript frameworks have several animations to move or style elements. I thought it was very handy to have all this kind of animations in one list so you can pick them wisely. View Mootools example The 30 transition types above break down into 10 sets: Quad Cubic Quart Quint Expo Circ Sine [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1242" title="transitions" src="http://youngdutchdesign.com/wp-content/uploads/2009/04/transitions.jpg" alt="transitions" width="149" height="200" /></p>
<p>A lot of javascript frameworks have several animations to move or style elements. I thought it was very handy to have all this kind of animations in one list so you can pick them wisely.</p>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/transitions.php">View Mootools example</a></p>
<p>The 30 transition types above break down into 10 sets:</p>
<p><span id="more-1200"></span>
<ul>
<li>Quad</li>
<li>Cubic</li>
<li>Quart</li>
<li>Quint</li>
<li>Expo</li>
<li>Circ</li>
<li>Sine</li>
<li>Back</li>
<li>Bounce</li>
<li>Elastic</li>
</ul>
<p>Each set has three options:</p>
<ul>
<li>Ease In</li>
<li>Ease Out</li>
<li>Ease In Out</li>
</ul>
<h2>Usage</h2>
<p>Load this javascript when the DOM is ready.</p>
<pre class="javascript">var enterFunction = function() {
	this.start('width', '600px');
}

var leaveFunction = function() {
	this.start('width', '300px');
}

bounceInOut= new Fx.Tween(quadInOut, {
	link: 'cancel',
	transition: Fx.Transitions.Quad.easeInOut,
	onStart: function(ydd){
		ydd.highlight('#F47920');
	},
	onComplete: function(ydd){
		ydd.highlight('#F5A145');
	}
});

$('bounceinout').addEvents({
	'mouseenter': enterFunction.bind(bounceInOut),
	'mouseleave': leaveFunction.bind(bounceInOut)
});</pre>
<p><a class="example_but demo" href="http://youngdutchdesign.com/examples/transitions.php">View examples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/transitions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
