<?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>Lunarium Design</title>
	<atom:link href="http://www.lunariumdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lunariumdesign.com</link>
	<description>Custom Web Design and Internet Marketing</description>
	<lastBuildDate>Tue, 21 May 2013 21:04:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Replace the Image in an  with CSS</title>
		<link>http://www.lunariumdesign.com/replace-the-image-in-an-with-css/</link>
		<comments>http://www.lunariumdesign.com/replace-the-image-in-an-with-css/#comments</comments>
		<pubDate>Tue, 21 May 2013 21:04:22 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Replace]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/replace-the-image-in-an-with-css/</guid>
		<description><![CDATA[The following is a guest post by Marcel Shields. Marcel in a difficult place where he needed to change the image on a page but didn&#8217;t have access to the HTML. Rare, but I&#8217;m sure we&#8217;ve all be in weird situations like this. He explains how he managed to replace that image without needing to [...]]]></description>
			<content:encoded><![CDATA[<p><em class="explanation">The following is a guest post by <a href="https://twitter.com/marcelshields">Marcel Shields</a>. Marcel in a difficult place where he needed to change the image on a page but didn&#8217;t have access to the HTML. Rare, but I&#8217;m sure we&#8217;ve all be in weird situations like this. He explains how he managed to replace that image without needing to access the HTML or JavaScript. Also turns out to be a pretty good way to replace <strong>anything</strong> with an image.</em></p>
<p><span id="more-21673"></span></p>
<p>I just wanted to share something I found really cool about using CSS <a href="http://css-tricks.com/almanac/properties/b/box-sizing/">box-sizing</a>. Chris wrote a <a href="http://css-tricks.com/box-sizing/">really good introduction</a> a few years back if you&#8217;re not familiar with the property. It makes things a lot more sane when thinking about layout. People love it so much, they <a href="http://paulirish.com/2012/box-sizing-border-box-ftw/">put it on everything</a> like hot sauce. I wanted to share how I found it useful as (yet) another image replacement technique.</p>
<p>A few days ago at work, I was asked to replace an <code>&lt;img&gt;</code> on our site with another image hosted elsewhere. Simple right? But the catch was I would not be able to replace the markup as it was already deployed to production, but could inject CSS or JS through our CMS. For whichever technology I chose, it would be inserted on all site pages. I only needed on one specific page, and the attributes of parent containers were non-specific to the desired page.</p>
<pre rel="HTML"><code class="language-markup">&lt;head&gt;
  &lt;title&gt;Really Cool Page&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;!-- .header would be across site on other pages with different children, so no background image adding --&gt;
  &lt;div class="header"&gt;
    &lt;img class="banner" src="http://notrealdomain1.com/banner.png"&gt;
  &lt;/div&gt;
&lt;/body&gt;</code></pre>
<p>This is simple to do with JavaScript, but I wanted to see if there was another, even simpler, way. After a few iterations in Chrome Dev Tools, I thought to use the <code>box-sizing</code> property to keep dimensions strict, add the new image as a background image, and just push the inline image out of the way with padding and see what happened.</p>
<pre rel="CSS"><code class="language-css">/* All in one selector */
.banner {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url(http://notrealdomain2.com/newbanner.png) no-repeat;
  width: 180px; /* Width of new image */
  height: 236px; /* Height of new image */
  padding-left: 180px; /* Equal to width of new image */
}</code></pre>
<p>It worked beautifully. Here&#8217;s what&#8217;s cool:</p>
<ul>
<li>It works on just about any element, even empty ones like <code>&lt;img&gt;</code> or <code>&lt;hr&gt;</code></li>
<li>Browser support is excellent (Chrome, Firefox, Opera, Safari, IE8+) <a href="http://caniuse.com/#feat=css3-boxsizing">http://caniuse.com/#feat=css3-boxsizing</a></li>
<li>Refrains from using SEO unfriendly <code>display: none</code> or other properties</li>
</ul>
<p>That last point seemed important, as it works really well for text replacement too without any adjustment. Check it out!</p>
<pre class="codepen" data-height="300" data-type="result" data-href="cJEjs" data-user="chriscoyier" data-safe="true"><code></code><a href="http://codepen.io/chriscoyier/pen/cJEjs">Check out this Pen!</a></pre>
<hr />
<p><a href="http://events.jquery.org/2013/portland/"><img src="http://cdn.css-tricks.com/images/jquery-portland.jpg"></a></p>
<p><a href="http://events.jquery.org/2013/portland/">jQuery Conference Portland 2013</a> has a limited number of regular tickets still available. Two days. Two tracks. Fresh speakers. Jun 13-14. $  50 off for members of the jQuery Foundation. <a href="https://jquery.org/join/">Join today</a> and get your first year of fan dues paid for with purchase of both a training and conference ticket. Training provided by Bocoup on Jun 12. Use coupon code <strong>CSSTricks25off</strong> for $  25 off.</p>
<hr />
<p><small><a href="http://css-tricks.com/replace-the-image-in-an-img-with-css/">Replace the Image in an &lt;img> with CSS</a> is a post from <a href="http://css-tricks.com">CSS-Tricks</a></small></p>
</p>
<p><a rel="nofollow" href="http://css-tricks.com/replace-the-image-in-an-img-with-css/">CSS-Tricks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/replace-the-image-in-an-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome’s requestAutocomplete()</title>
		<link>http://www.lunariumdesign.com/chromes-requestautocomplete/</link>
		<comments>http://www.lunariumdesign.com/chromes-requestautocomplete/#comments</comments>
		<pubDate>Tue, 21 May 2013 10:59:12 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Chrome’s]]></category>
		<category><![CDATA[requestAutocomplete]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/chromes-requestautocomplete/</guid>
		<description><![CDATA[Auto-filling forms is nice because it saves time and is less prone to user error. Even better is not even needing to see a form in the first place. Direct Link to Article &#8212; Permalink jQuery Conference Portland 2013 has a limited number of regular tickets still available. Two days. Two tracks. Fresh speakers. Jun [...]]]></description>
			<content:encoded><![CDATA[<p>Auto-filling forms is nice because it saves time and is less prone to user error. Even better is not even needing to see a form in the first place.</p>
<p><a href="http://blog.alexmaccaw.com/requestautocomplete" title="Direct link to featured article">Direct Link to Article</a> &#8212; <a href="http://css-tricks.com/chromes-requestautocomplete/">Permalink</a></p>
<hr />
<p><a href="http://events.jquery.org/2013/portland/"><img src="http://cdn.css-tricks.com/images/jquery-portland.jpg"></a></p>
<p><a href="http://events.jquery.org/2013/portland/">jQuery Conference Portland 2013</a> has a limited number of regular tickets still available. Two days. Two tracks. Fresh speakers. Jun 13-14. $  50 off for members of the jQuery Foundation. <a href="https://jquery.org/join/">Join today</a> and get your first year of fan dues paid for with purchase of both a training and conference ticket. Training provided by Bocoup on Jun 12. Use coupon code <strong>CSSTricks25off</strong> for $  25 off.</p>
<hr />
<p><small><a href="http://css-tricks.com/chromes-requestautocomplete/">Chrome’s requestAutocomplete()</a> is a post from <a href="http://css-tricks.com">CSS-Tricks</a></small></p>
</p>
<p><a rel="nofollow" href="http://blog.alexmaccaw.com/requestautocomplete">CSS-Tricks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/chromes-requestautocomplete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prepros</title>
		<link>http://www.lunariumdesign.com/prepros/</link>
		<comments>http://www.lunariumdesign.com/prepros/#comments</comments>
		<pubDate>Tue, 21 May 2013 00:51:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Prepros]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/prepros/</guid>
		<description><![CDATA[Is an open-source app modeled after CodeKit. Prepros runs on Windows where CodeKit is Mac only. From people who have tried it, it seems good. Direct Link to Article &#8212; Permalink Prepros is a post from CSS-Tricks CSS-Tricks]]></description>
			<content:encoded><![CDATA[<p>Is an open-source app modeled after <a href="http://incident57.com/codekit/">CodeKit</a>. Prepros runs on Windows where CodeKit is Mac only. From people who have <a href="http://shoogledesigns.com/blog/blog/2013/05/18/codekit-for-windows-prepros/">tried it</a>, it seems good.</p>
<p><a href="http://alphapixels.com/prepros/" title="Direct link to featured article">Direct Link to Article</a> &#8212; <a href="http://css-tricks.com/prepros/">Permalink</a></p>
<p>
<p><small><a href="http://css-tricks.com/prepros/">Prepros</a> is a post from <a href="http://css-tricks.com">CSS-Tricks</a></small></p>
</p>
<p><a rel="nofollow" href="http://alphapixels.com/prepros/">CSS-Tricks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/prepros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slack, the missing concept</title>
		<link>http://www.lunariumdesign.com/slack-the-missing-concept/</link>
		<comments>http://www.lunariumdesign.com/slack-the-missing-concept/#comments</comments>
		<pubDate>Mon, 20 May 2013 14:40:17 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Concept]]></category>
		<category><![CDATA[missing]]></category>
		<category><![CDATA[Slack]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/slack-the-missing-concept/</guid>
		<description><![CDATA[&#8230;that is usually absent in fast-paced environments.This article is oriented to teams with mid-level proficiency in an Agile process, like mine. Impostor syndrome at work or new possibilities to deliver value?James Shore argument (Scrum)James Shore in &#8216;We deliver business value &#8216; talks about aggressively reducing velocity, while lazily increasing it after large measurements. Velocity is [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;that is usually absent in fast-paced environments.This article is oriented to teams with mid-level proficiency in an Agile process, like mine. Impostor syndrome at work or new possibilities to deliver value?James Shore argument (Scrum)James Shore in &#8216;We deliver business value &#8216; talks about aggressively reducing velocity, while lazily increasing it after large measurements. Velocity is not a&#8230;<img src="http://feeds.feedburner.com/~r/zones/css/~4/UnFdnxsbIe8" height="1" width="1"/><br />
<a rel="nofollow" href="http://feeds.dzone.com/~r/zones/css/~3/UnFdnxsbIe8/slack-missing-concept">Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/slack-the-missing-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinJS: use the same data in the zoomed out and zoomed in view.</title>
		<link>http://www.lunariumdesign.com/winjs-use-the-same-data-in-the-zoomed-out-and-zoomed-in-view/</link>
		<comments>http://www.lunariumdesign.com/winjs-use-the-same-data-in-the-zoomed-out-and-zoomed-in-view/#comments</comments>
		<pubDate>Mon, 20 May 2013 12:55:15 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Same]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[WinJS]]></category>
		<category><![CDATA[zoomed]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/winjs-use-the-same-data-in-the-zoomed-out-and-zoomed-in-view/</guid>
		<description><![CDATA[The Semantic zoom let you display your data in a zoomed out and zoomed in way. It’s really fine when your data is grouped but sometimes you need to display a non-grouped data just in a different way with a different template. Preview Text:&#160; The Semantic zoom let you display your data in a zoomed [...]]]></description>
			<content:encoded><![CDATA[<p>The Semantic zoom let you display your data in a zoomed out and zoomed in way. It’s really fine when your data is grouped but sometimes you need to display a non-grouped data just in a different way with a different template.<br />
      Preview Text:&nbsp;</p>
<p>                    The Semantic zoom let you display your data in a zoomed out and zoomed in way. It’s really fine when your&#8230;<img src="http://feeds.feedburner.com/~r/zones/css/~4/wjy3V9KtpEE" height="1" width="1"/><br />
<a rel="nofollow" href="http://feeds.dzone.com/~r/zones/css/~3/wjy3V9KtpEE/winjs-use-same-data-zoomed-out">Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/winjs-use-the-same-data-in-the-zoomed-out-and-zoomed-in-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Workflow v2: Mobile, DevTools &amp; LiveReload</title>
		<link>http://www.lunariumdesign.com/my-workflow-v2-mobile-devtools-livereload/</link>
		<comments>http://www.lunariumdesign.com/my-workflow-v2-mobile-devtools-livereload/#comments</comments>
		<pubDate>Mon, 20 May 2013 07:47:51 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[DevTools”]]></category>
		<category><![CDATA[LiveReload]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/my-workflow-v2-mobile-devtools-livereload/</guid>
		<description><![CDATA[Since I’m at Mobilism 2013 I think it’s worth sharing my recent mobile (mainly CSS) workflow. It’s not rocket science, but it’s a nice follow on from my workflow with devtools I shared a few months back. Preview Text:&#160; Since I’m at Mobilism 2013 I think it’s worth sharing my recent mobile (mainly CSS) workflow. [...]]]></description>
			<content:encoded><![CDATA[<p>Since I’m at Mobilism 2013 I think it’s worth sharing my recent mobile (mainly CSS) workflow. It’s not rocket science, but it’s a nice follow on from my workflow with devtools I shared a few months back.</p>
<p>      Preview Text:&nbsp;</p>
<p>                    Since I’m at Mobilism 2013 I think it’s worth sharing my recent mobile (mainly CSS) workflow. It’s not rocket&#8230;<img src="http://feeds.feedburner.com/~r/zones/css/~4/e56PDkCrpH8" height="1" width="1"/><br />
<a rel="nofollow" href="http://feeds.dzone.com/~r/zones/css/~3/e56PDkCrpH8/my-workflow-v2-mobile-devtools">Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/my-workflow-v2-mobile-devtools-livereload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>18 Websites that Take Scrolling to the Next Level</title>
		<link>http://www.lunariumdesign.com/18-websites-that-take-scrolling-to-the-next-level/</link>
		<comments>http://www.lunariumdesign.com/18-websites-that-take-scrolling-to-the-next-level/#comments</comments>
		<pubDate>Mon, 20 May 2013 06:05:42 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Level]]></category>
		<category><![CDATA[Next]]></category>
		<category><![CDATA[Scrolling]]></category>
		<category><![CDATA[Take]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/18-websites-that-take-scrolling-to-the-next-level/</guid>
		<description><![CDATA[Advertise here with BSA There was a time when the common practice was to try and place all content above the fold. But now, instead of fearing the scroll, web designers and developers are embracing the need to scroll, and using it as opportunity to engage the user with background reveals, element animations, and other [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1260035&#038;k=41a9fc188355b6ab15f5fc023749ebc5&#038;a=19889&#038;c=1021189470' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1260035&#038;k=41a9fc188355b6ab15f5fc023749ebc5&#038;a=19889&#038;c=1021189470' border='0' alt='' /></a>
<p><a href='http://buysellads.com/buy/sitedetails/pubkey/41a9fc188355b6ab15f5fc023749ebc5/zone/1260035' target='_blank'>Advertise here with BSA</a></p>
<p>
<p>There was a time when the common practice was to try and place all content above the fold. But now, instead of fearing the scroll, web designers and developers are embracing the need to scroll, and using it as opportunity to engage the user with background reveals, element animations, and other clever effects based on the pages scroll position. So in an effort to inspire you, we&#8217;ve gathered a collection of websites that take scrolling to the next level.<span id="more-19889"></span></p>
<h3><a href="http://playgroundinc.com/" target="_blank">Playground Inc.</a></h3>
<p><a href="http://playgroundinc.com/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll01.jpg" /></a></p>
<h3><a href="http://www.discovershadow.com/" target="_blank">Shadow</a></h3>
<p><a href="http://www.discovershadow.com/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll02.jpg" /></a></p>
<h3><a href="http://artemjuliawedding.com/en" target="_blank">Artem &amp; Julia are getting married</a></h3>
<p><a href="http://artemjuliawedding.com/en"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll03.jpg" /></a></p>
<h3><a href="http://shaundona.com/" target="_blank">Shaun Dona</a></h3>
<p><a href="http://shaundona.com/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll04.jpg" /></a></p>
<h3><a href="http://www.koawater.com/#top" target="_blank">Koa Water</a></h3>
<p><a href="http://www.koawater.com/#top"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll05.jpg" /></a></p>
<h3><a href="http://loftcitychurch.com/welcome" target="_blank">Loft City Church</a></h3>
<p><a href="http://loftcitychurch.com/welcome"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll06.jpg" /></a></p>
<h3><a href="http://ishothim.com/" target="_blank">I Shot Him</a></h3>
<p><a href="http://ishothim.com/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll08.jpg" /></a></p>
<h3><a href="http://islreview.com/" target="_blank">ISL</a></h3>
<p><a href="http://islreview.com/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll09.jpg" /></a></p>
<h3><a href="http://shibui.me/web/scroll/index.html" target="_blank">Scroll for your Health</a></h3>
<p><a href="http://shibui.me/web/scroll/index.html"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll10.jpg" /></a></p>
<h3><a href="http://www.puma.com/actvrcvr/#/home" target="_blank">Puma Actv</a></h3>
<p><a href="http://www.puma.com/actvrcvr/#/home"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll11.jpg" /></a></p>
<h3><a href="http://designedtomove.org/" target="_blank">Designed to Move</a></h3>
<p><a href="http://designedtomove.org/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll12.jpg" /></a></p>
<h3><a href="http://www.moneysupermarket.com/savings/infographics/story-of-the-pound/" target="_blank">The Story of the Pound</a></h3>
<p><a href="http://www.moneysupermarket.com/savings/infographics/story-of-the-pound/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll13.jpg" /></a></p>
<h3><a href="http://btpdesign.com/#welcome" target="_blank">BTP Design</a></h3>
<p><a href="http://btpdesign.com/#welcome"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll14.jpg" /></a></p>
<h3><a href="http://dspg.sg/home/" target="_blank">DSPG</a></h3>
<p><a href="http://dspg.sg/home/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll15.jpg" /></a></p>
<h3><a href="http://hotdot.pro/en/" target="_blank">Hot Dot</a></h3>
<p><a href="http://hotdot.pro/en/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll16.jpg" /></a></p>
<h3><a href="http://solomo.welovedigital.com/" target="_blank">5 Reasons to Celebrate SoLoMo</a></h3>
<p><a href="http://solomo.welovedigital.com/"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll17.jpg" /></a></p>
<h3><a href="http://smartphood.it/index-en.html" target="_blank">Smart Phood</a></h3>
<p><a href="http://smartphood.it/index-en.html"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll18.jpg" /></a></p>
<h3><a href="http://www.numero10.ch/fr" target="_blank">numero10</a></h3>
<p><a href="http://www.numero10.ch/fr"><img class="aligncenter size-full wp-image-3448" title="19 Websites with Extremely Creative Scrolling Effects" alt="19 Websites with Extremely Creative Scrolling Effects" src="http://webdesignledger.com/wp-content/uploads/2013/05/scroll19.jpg" /></a></p>
<p><a rel="nofollow" href="http://webdesignledger.com/inspiration/18-websites-that-take-scrolling-to-the-next-level">Web Design Ledger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/18-websites-that-take-scrolling-to-the-next-level/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Building Web Applications with Ember.js</title>
		<link>http://www.lunariumdesign.com/video-building-web-applications-with-ember-js/</link>
		<comments>http://www.lunariumdesign.com/video-building-web-applications-with-ember-js/#comments</comments>
		<pubDate>Mon, 20 May 2013 01:05:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Building]]></category>
		<category><![CDATA[Ember.js]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/video-building-web-applications-with-ember-js/</guid>
		<description><![CDATA[Preview Text:&#160; In this talk, Yehuda Katz shows us how Ember can be used to build fast and responsive apps, and shares some nifty aspects of Ember you might not know about. Legacy Sponsored:&#160; unsponsored Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax]]></description>
			<content:encoded><![CDATA[<p>Preview Text:&nbsp;</p>
<p>                    In this talk, Yehuda Katz shows us how Ember can be used to build fast and responsive apps, and shares some nifty aspects of Ember you might not know about.         </p>
<p>Legacy<br />
      Sponsored:&nbsp;</p>
<p>                    unsponsored<img src="http://feeds.feedburner.com/~r/zones/css/~4/eE4iLiHPxrQ" height="1" width="1"/><br />
<a rel="nofollow" href="http://feeds.dzone.com/~r/zones/css/~3/eE4iLiHPxrQ/video-building-web">Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/video-building-web-applications-with-ember-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Three Keys to Successful Single Page Web Applications</title>
		<link>http://www.lunariumdesign.com/video-three-keys-to-successful-single-page-web-applications/</link>
		<comments>http://www.lunariumdesign.com/video-three-keys-to-successful-single-page-web-applications/#comments</comments>
		<pubDate>Sun, 19 May 2013 16:44:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Keys]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Single]]></category>
		<category><![CDATA[Successful]]></category>
		<category><![CDATA[Three]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/video-three-keys-to-successful-single-page-web-applications/</guid>
		<description><![CDATA[You&#8217;ve got 100 milliseconds for your web application to engage your users before they start to feel disconnected from the app. That&#8217;s 1/10th of a second. After a whole second, you&#8217;re starting to lose users completely. This simple fact is motivation enough for many to employ usage of single page web applications, and in this [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve got 100 milliseconds for your web application to engage your<br />
users before they start to feel disconnected from the app. That&#8217;s 1/10th<br />
 of a second. After a whole second, you&#8217;re starting to lose users<br />
completely. This simple fact is motivation enough for many to employ<br />
usage of single page web applications, and in this presentation from<br />
HTML5DevConf, Josh Powell will share three keys to&#8230;<img src="http://feeds.feedburner.com/~r/zones/css/~4/W5AtCtKippo" height="1" width="1"/><br />
<a rel="nofollow" href="http://feeds.dzone.com/~r/zones/css/~3/W5AtCtKippo/video-three-keys-successful">Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/video-three-keys-to-successful-single-page-web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: microformats2 &amp; HTML5: The Next Evolutionary Step For Web Data</title>
		<link>http://www.lunariumdesign.com/video-microformats2-html5-the-next-evolutionary-step-for-web-data/</link>
		<comments>http://www.lunariumdesign.com/video-microformats2-html5-the-next-evolutionary-step-for-web-data/#comments</comments>
		<pubDate>Sun, 19 May 2013 11:29:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Evolutionary]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[microformats2]]></category>
		<category><![CDATA[Next]]></category>
		<category><![CDATA[step]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.lunariumdesign.com/video-microformats2-html5-the-next-evolutionary-step-for-web-data/</guid>
		<description><![CDATA[Preview Text:&#160; Tantek Çelik of Mozilla talks about the exciting improvements that microformats2 and newer HTML5 elements bring to structured web data. Legacy Sponsored:&#160; unsponsored Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax]]></description>
			<content:encoded><![CDATA[<p>Preview Text:&nbsp;</p>
<p>                    Tantek Çelik of Mozilla talks about the exciting improvements that microformats2 and newer HTML5 elements bring to structured web data.         </p>
<p>Legacy<br />
      Sponsored:&nbsp;</p>
<p>                    unsponsored<img src="http://feeds.feedburner.com/~r/zones/css/~4/1LK1pQy94iY" height="1" width="1"/><br />
<a rel="nofollow" href="http://feeds.dzone.com/~r/zones/css/~3/1LK1pQy94iY/video-microformats2-html5-next">Web Builder Zone &#8211; Web design, PHP, RIA, css, html, usability &#038; some Ajax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lunariumdesign.com/video-microformats2-html5-the-next-evolutionary-step-for-web-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
