<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>LSD</title>
	
	<link>http://lysergicstudio.com</link>
	<description>Lysergic Studio Design</description>
	<lastBuildDate>Mon, 30 Apr 2012 08:11:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/lysergicstudio" /><feedburner:info uri="lysergicstudio" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><feedburner:emailServiceId>lysergicstudio</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Unveil.js: load images on-the-go with this lightweight version of the Lazy Load plugin</title>
		<link>http://feedproxy.google.com/~r/lysergicstudio/~3/LeeK-CyQCQo/</link>
		<comments>http://lysergicstudio.com/unveil-js-load-images-on-the-go-with-this-lightweight-version-of-the-lazy-load-plugin/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 08:04:57 +0000</pubDate>
		<dc:creator>Enrico Deleo</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[lightweight]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://lysergicstudio.com/?p=175</guid>
		<description><![CDATA[You are probably already familiar with the Lazy Load, a jQuery plugin that loads images outside of viewport (visible part of web page) only when user scrolls to them. This plugin is very helpful when dealing with long pages and/or a lot of images and makes the pages load faster. Unveil.js I found an handy jQuery plugin [...]]]></description>
			<content:encoded><![CDATA[<p>You are probably already familiar with the <em><strong><a title="lazy load jquery plugin" href="http://www.appelsiini.net/projects/lazyload">Lazy Load</a></strong>, </em>a <strong>jQuery plugin</strong> that loads images outside of viewport (visible part of web page) <strong>only when user scrolls to them</strong>.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2012/04/unveil1.jpg"><img class="size-full wp-image-177 aligncenter" title="unveil" src="http://lysergicstudio.com/wp-content/uploads/2012/04/unveil1.jpg" alt="" width="600" height="300" /></a></p>
<p>This plugin is very helpful when dealing with long pages and/or a lot of images and makes the pages load faster.</p>
<h2>Unveil.js</h2>
<p>I found an handy jQuery plugin written by <a href="http://forrst.me/luis_almeida">Luís Almeida</a> that does exactly this job with just a few lines of js: <strong>Unveil</strong>.</p>
<pre class="brush: jscript; title: ; notranslate">

(function( $ ) {
 $.fn.unveil = function () {
 var images = this, loaded, inview;

 this.one(&quot;unveil&quot;, function(){
 this.setAttribute( &quot;src&quot;, this.getAttribute( &quot;data-src&quot; ) );
 this.removeAttribute( &quot;data-src&quot; );
 });

 function unveil () {
 inview = images.filter(function(){
 var $e = $(this),
 $w = $(window),
 wt = $w.scrollTop(),
 wb = wt + $w.height(),
 et = $e.offset().top,
 eb = et + $e.height();

 return eb &gt;= wt &amp;&amp; et &lt;= wb;
 });

 loaded = inview.trigger(&quot;unveil&quot;);
 images = images.not( loaded );
 }

 $(window).scroll(unveil);
 unveil();

 return this;
 };
})( jQuery );
</pre>
<h2>Usage</h2>
<p>You just need to include images in this way:</p>
<pre class="brush: xml; title: ; notranslate">

&lt;img data-src=&quot;image.jpg&quot; src=&quot;loader.gif&quot;&gt;
</pre>
<p>and call the the plugin to load images</p>
<pre class="brush: jscript; title: ; notranslate">

$(&quot;img&quot;).unveil();
</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=LeeK-CyQCQo:jpk0VRWmEYo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=LeeK-CyQCQo:jpk0VRWmEYo:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=LeeK-CyQCQo:jpk0VRWmEYo:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=LeeK-CyQCQo:jpk0VRWmEYo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=LeeK-CyQCQo:jpk0VRWmEYo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=LeeK-CyQCQo:jpk0VRWmEYo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=LeeK-CyQCQo:jpk0VRWmEYo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=LeeK-CyQCQo:jpk0VRWmEYo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=LeeK-CyQCQo:jpk0VRWmEYo:Fm376NFy3DY"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=LeeK-CyQCQo:jpk0VRWmEYo:Fm376NFy3DY" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/lysergicstudio/~4/LeeK-CyQCQo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lysergicstudio.com/unveil-js-load-images-on-the-go-with-this-lightweight-version-of-the-lazy-load-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://lysergicstudio.com/unveil-js-load-images-on-the-go-with-this-lightweight-version-of-the-lazy-load-plugin/</feedburner:origLink></item>
		<item>
		<title>Make your website print-friendly [Quick Tip]</title>
		<link>http://feedproxy.google.com/~r/lysergicstudio/~3/fTs3EULZPug/</link>
		<comments>http://lysergicstudio.com/make-your-website-print-friendly/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 13:31:08 +0000</pubDate>
		<dc:creator>Enrico Deleo</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[styles]]></category>

		<guid isPermaLink="false">http://lysergicstudio.com/?p=166</guid>
		<description><![CDATA[If your website publish useful informations even when offline, you might consider the idea of making your pages printer-ready. What does it means? As you might know you can attach a CSS stylesheet to match a particular target, such as mobile devices or, in this case, the printer. How to link a CSS only for [...]]]></description>
			<content:encoded><![CDATA[<p>If your website publish useful informations even when offline, you might consider the idea of<strong> making your pages printer-ready</strong>.</p>
<h2>What does it means?</h2>
<p>As you might know you can attach a CSS stylesheet to match a particular target, such as mobile devices or, in this case, <strong>the printer</strong>.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/11/thumb.jpg"><img class="size-large wp-image-168 aligncenter" title="thumb" src="http://lysergicstudio.com/wp-content/uploads/2011/11/thumb-610x239.jpg" alt="" width="610" height="239" /></a></p>
<h2>How to link a CSS only for printers</h2>
<p>As you know you can link a CSS stylesheet in html by putting this code before the &lt;/head&gt; tag:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;style.css&quot; /&gt;
</pre>
<p>this code means that this CSS file should be used by <em>any</em> device (<em>all</em>).</p>
<p>You can link as many CSS files as you want, and the rules inside them will be followed with<em><strong> bottom-up priority</strong></em> (the next rule overrides the previous one).</p>
<p>So, if you link a print-friendly stylesheet <em><strong>after</strong></em> the general one, you can adjust conveniently when sent to the printer.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;print&quot; href=&quot;print.css&quot; /&gt;
</pre>
<h2>Changing the style right before printing</h2>
<p>In print.css you can modify or remove all the CSS behaviors that don&#8217;t fit a printed sheet nicely.</p>
<p>For example</p>
<p><em><strong>style.css:</strong></em></p>
<pre class="brush: css; title: ; notranslate">

body {
background-image: url(a-very-colorful-img.jpg);
}
</pre>
<p><em><strong>print.css:</strong></em></p>
<pre class="brush: css; title: ; notranslate">

body {
background-image: none;
}
</pre>
<p>In the example above we got rid of a the background (smart choice if you want a clean printed page).</p>
<p>This principle applies to everything concerns css.</p>
<h2>Example</h2>
<p>You can understand this topic better looking at the source code of this demo. Try to print the page if you want, it&#8217;s definitively ready for the ink!</p>
<p><a class="button_link" title="demo print friendly web page" href="http://playground.lysergicstudio.com/demo/css/printer-friendly/" target="_blank">demo</a> <a class="button_link" title="print demo" href="http://playground.lysergicstudio.com/demo/css/printer-friendly/print.html" target="_blank">print demo</a> <a class="button_link" href="http://playground.lysergicstudio.com/demo/css/printer-friendly/style.css" target="_blank">style.css</a> <a class="button_link" href="http://playground.lysergicstudio.com/demo/css/printer-friendly/print.css" target="_blank">print.css</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=fTs3EULZPug:jeY-v23IPkU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=fTs3EULZPug:jeY-v23IPkU:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=fTs3EULZPug:jeY-v23IPkU:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=fTs3EULZPug:jeY-v23IPkU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=fTs3EULZPug:jeY-v23IPkU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=fTs3EULZPug:jeY-v23IPkU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=fTs3EULZPug:jeY-v23IPkU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=fTs3EULZPug:jeY-v23IPkU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=fTs3EULZPug:jeY-v23IPkU:Fm376NFy3DY"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=fTs3EULZPug:jeY-v23IPkU:Fm376NFy3DY" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/lysergicstudio/~4/fTs3EULZPug" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lysergicstudio.com/make-your-website-print-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://lysergicstudio.com/make-your-website-print-friendly/</feedburner:origLink></item>
		<item>
		<title>10 CSS3 techniques you might need to know</title>
		<link>http://feedproxy.google.com/~r/lysergicstudio/~3/EPLAlnn0UN8/</link>
		<comments>http://lysergicstudio.com/10-css3-techniques-you-might-need-to-know/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 23:40:53 +0000</pubDate>
		<dc:creator>Enrico Deleo</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[prorpieties]]></category>
		<category><![CDATA[styling]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://lysergicstudio.com/?p=157</guid>
		<description><![CDATA[I suppose you already heard about CSS3. If you gave attention to the web design field you know this is the new must for a modern web site. Thanks to the new Cascading Style Sheets standard you&#8217;ll build nicer layouts with some of the hottest features (shadows, border radius etc.) without even a line of JS [...]]]></description>
			<content:encoded><![CDATA[<p>I suppose you already heard about CSS3. If you gave attention to the web design field you know this is the new must for a modern web site.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/10/post_css3.jpg"><img class="alignnone size-full wp-image-159" title="post_css3" src="http://lysergicstudio.com/wp-content/uploads/2011/10/post_css3.jpg" alt="" width="600" height="300" /></a></p>
<p>Thanks to the new <em>Cascading Style Sheets </em>standard you&#8217;ll build nicer layouts with some of the hottest features (shadows, border radius etc.) <strong>without even a line of JS or one of those tricky image-based workarounds!</strong></p>
<h2>Border Radius</h2>
<p>In modern web design people ask for border radius. Personally speaking, I love square, tidy borders, but you know you don&#8217;t need a thing after you know how to build it ;)</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">
.box {
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;box&quot;&gt;
&lt;!--CONTENT--&gt;
&lt;/div&gt;
</pre>
<h2>Box Shadows</h2>
<p>That&#8217;s really tricky to accomplish if you follow the image-based way. With CSS3 it&#8217;s a shoot. You can add shadows with just few line.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">
.box {
 box-shadow: 5px 5px 2px black;
 -moz-box-shadow: 5px 5px 2px black;
 -webkit-box-shadow: 5px 5px 2px black;
 }
</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;box&quot;&gt;
 &lt;!--CONTENT--&gt;
 &lt;/div&gt;
</pre>
<h2>Text Shadows</h2>
<p>Same as above, but it applies to texts. Very useful and cool if combined with the right font/background.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">
.font {
font-size: 20px;
color: #2178d9;
}
.font {
text-shadow: 0 1px 0 #000;
}
</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;span class=&quot;font&quot;&gt;The quick brown fox jumps over the lazy dog.&lt;/span&gt;</pre>
<h2>@font-face</h2>
<p>Typography is very important both on the side of readability and look. Designing an interface with just <em>safe fonts</em> is definitively too restrictive. Now you can add some new spice to your text!</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">
@font-face {
font-family: 'Loyal';
src: url('loyal.ttf');
}
.font {
font-family: Loyal;
font-size: 20px;
}
</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;span class=&quot;font&quot;&gt;The quick brown fox jumps over the lazy dog.&lt;/span&gt;
</pre>
<h2>Opacity</h2>
<p>Another tricky effect is <strong>opacity</strong>: some people use .png images to reach this goal. <strong>CSS3 makes this effect easy</strong> with an unique propriety.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">
.box {opacity: .6;}
</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;box&quot;&gt; &lt;!--CONTENT--&gt;&lt;/div&gt;</pre>
<h2>RGBA</h2>
<p><em><strong>RGBA</strong></em> is one of the most interesting propriety here. With RGBA you can set the exact <strong>RGB value you want </strong>and <strong>Alpha Channel</strong>, in other words you&#8217;ll set color and opacity in one shoot.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">.box {background: rgba(239, 182, 29, .25); /*in order: R, G, B, A*/}</pre>
<p><strong>HTML markup </strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;box&quot;&gt; &lt;!--CONTENT--&gt;&lt;/div&gt;</pre>
<h2>Multiple Backgrounds</h2>
<p>Multiple background compatibility is here. You won&#8217;t need to create multiple divs, just use CSS3! Yeey!</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">.box {width: 200px;height: 150px;background: url(images/text.png) center center no-repeat, url(images/bg.png) repeat-x;}</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;box&quot;&gt;&lt;!--CONTENT--&gt;&lt;/div&gt;</pre>
<h2>Columns</h2>
<p>Now it&#8217;s easy to have newspaper-like columns without different divs or jquery.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">.columns {-moz-column-count: 2;-webkit-column-count: 2;}</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;columns&quot;&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla elementum accumsan mi. Maecenas id dui a magna tempor pretium. Quisque id enim. Proin id tortor. Curabitur sit amet enim vitae quam pharetra imperdiet. Nulla diam ante, pellentesque eu, vestibulum non, adipiscing nec, eros. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis a nunc. Donec non dui a velit pulvinar gravida. Nunc rutrum libero vel tortor. Duis sed mi eu metus tincidunt ullamcorper. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. In purus lorem, aliquam ac, congue ac, vestibulum quis, felis. Aliquam non sapien.&lt;/p&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla elementum accumsan mi. Maecenas id dui a magna tempor pretium. Quisque id enim. Proin id tortor. Curabitur sit amet enim vitae quam pharetra imperdiet. Nulla diam ante, pellentesque eu, vestibulum non, adipiscing nec, eros. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis a nunc. Donec non dui a velit pulvinar gravida. Nunc rutrum libero vel tortor. Duis sed mi eu metus tincidunt ullamcorper. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. In purus lorem, aliquam ac, congue ac, vestibulum quis, felis. Aliquam non sapien.&lt;/p&gt;&lt;/div&gt;
</pre>
<h2>Border Images</h2>
<p>Make your borders uniques with this propriety.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">.box {border-width: 20px;-webkit-border-image: url(images/border.png) 27 round;-moz-border-image: url(images/border.png) 27 round;border-image: url(images/border.png) 27 round;}
</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;box&quot;&gt;&lt;!--CONTENT--&gt;&lt;/div&gt;</pre>
<h2>Animations</h2>
<p>Yes, <strong>animations</strong> are cool. And you haven&#8217;t to load jQuery and use the famous animate() to make simple but effective animations.</p>
<p><strong>CSS3</strong></p>
<pre class="brush: css; title: ; notranslate">.box {position: relative;-webkit-transition: top 300ms linear;}.box:hover {top: 20px;}</pre>
<p><strong>HTML markup</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;div class=&quot;box&quot;&gt;&lt;!--CONTENT--&gt;&lt;/div&gt;</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=EPLAlnn0UN8:uVhCAt9eVfA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=EPLAlnn0UN8:uVhCAt9eVfA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=EPLAlnn0UN8:uVhCAt9eVfA:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=EPLAlnn0UN8:uVhCAt9eVfA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=EPLAlnn0UN8:uVhCAt9eVfA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=EPLAlnn0UN8:uVhCAt9eVfA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=EPLAlnn0UN8:uVhCAt9eVfA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=EPLAlnn0UN8:uVhCAt9eVfA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=EPLAlnn0UN8:uVhCAt9eVfA:Fm376NFy3DY"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=EPLAlnn0UN8:uVhCAt9eVfA:Fm376NFy3DY" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/lysergicstudio/~4/EPLAlnn0UN8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lysergicstudio.com/10-css3-techniques-you-might-need-to-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://lysergicstudio.com/10-css3-techniques-you-might-need-to-know/</feedburner:origLink></item>
		<item>
		<title>Speed up WordPress theme development with dummy content</title>
		<link>http://feedproxy.google.com/~r/lysergicstudio/~3/dhUPd5LZ-CI/</link>
		<comments>http://lysergicstudio.com/speed-up-your-wordpress-theme-development-with-dummy-content/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 20:19:15 +0000</pubDate>
		<dc:creator>Enrico Deleo</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[dummy]]></category>
		<category><![CDATA[fake]]></category>
		<category><![CDATA[lorem ipsum]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://lysergicstudio.com/?p=150</guid>
		<description><![CDATA[If you develop themes for WordPress you usually focus on aesthetic part of the job, forgetting about typography. This behavior turns into a poor readability for the end user and could pauperize the layout itself. As we love to say, content is the king. And you should make your content nice and easy to read. [...]]]></description>
			<content:encoded><![CDATA[<p>If you develop themes for WordPress you usually focus on aesthetic part of the job, forgetting about typography.<br />
This behavior turns into a poor readability for the end user and could pauperize the layout itself.</p>
<p>As we love to say, <em><strong>content is the king</strong></em>. And you should make your content nice and easy to read.</p>
<p><img title="typography" src="http://www.erriko.it/wp-content/2011/03/typography-600x375.jpg" alt="" width="600" height="375" /></p>
<p>In this post, we suggest you a few useful resources <strong>created to speed up your theme development, </strong>filling your WordPress installation with various content (pages, posts, comments etc.).</p>
<p><strong>You&#8217;ll be sure to stylize everything from headings to links in a proper way</strong>.</p>
<h2>WP Dummy Content Plugin</h2>
<p><a href="http://wordpress.org/extend/plugins/wp-dummy-content/"><img title="wp dummy content" src="http://www.erriko.it/wp-content/2011/03/screenshot-1-580x423.jpg" alt="" width="580" height="423" /></a></p>
<p><a title="Plugin" href="http://wordpress.org/extend/plugins/wp-dummy-content/" target="_blank">WP Dummy Content </a>is a plugin <strong>that creates new content automagically.</strong></p>
<p><strong></strong>You can chose how many posts/pages to create, and which category they belongs to.<br />
<strong>When you finish, you can remove the fake content with just a click</strong>.</p>
<h2>WP Candy Sample WordPress Content</h2>
<p><a href="http://wpcandy.com/articles/easier-theme-development-with-the-sample-post-collection.html"><img title="wp candy" src="http://www.erriko.it/wp-content/2011/03/2.png" alt="" width="580" height="340" /></a></p>
<p><a title="xml contenuti wp" href="http://wpcandy.com/articles/easier-theme-development-with-the-sample-post-collection.html" target="_blank">WP Candy sample content</a> is a WordPress backup xml ready to be imported.<br />
This file has everything you need: blockquotes, images, categories&#8230;</p>
<h2>Church Crunch Dummy Data</h2>
<p><a href="http://churchcrunch.com/wordpress-dummy-data-test-that-theme/"><img title="crunch xml wordpress import dummy" src="http://www.erriko.it/wp-content/2011/03/3.png" alt="" width="500" height="300" /></a></p>
<p><a href="http://churchcrunch.com/wordpress-dummy-data-test-that-theme/" target="_blank">This xml file</a> is a good alternative to the previous one. <strong>It generates also comments</strong>.</p>
<h2>Old fashion way</h2>
<p><img title="lorem-ipsum-books" src="http://www.erriko.it/wp-content/2011/03/lorem-ipsum-books-580x386.jpg" alt="" width="580" height="386" /></p>
<p>If you have time to spend, you can give a try to <a title="lipsum" href="http://it.lipsum.com/" target="_blank">lipsum.org</a>, where you can create pseudo-random content, and fill your WordPress development installation manually.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=dhUPd5LZ-CI:sZE8iSbNlg8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=dhUPd5LZ-CI:sZE8iSbNlg8:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=dhUPd5LZ-CI:sZE8iSbNlg8:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=dhUPd5LZ-CI:sZE8iSbNlg8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=dhUPd5LZ-CI:sZE8iSbNlg8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=dhUPd5LZ-CI:sZE8iSbNlg8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=dhUPd5LZ-CI:sZE8iSbNlg8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=dhUPd5LZ-CI:sZE8iSbNlg8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=dhUPd5LZ-CI:sZE8iSbNlg8:Fm376NFy3DY"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=dhUPd5LZ-CI:sZE8iSbNlg8:Fm376NFy3DY" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/lysergicstudio/~4/dhUPd5LZ-CI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lysergicstudio.com/speed-up-your-wordpress-theme-development-with-dummy-content/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://lysergicstudio.com/speed-up-your-wordpress-theme-development-with-dummy-content/</feedburner:origLink></item>
		<item>
		<title>Best free minimal icon set for your next design</title>
		<link>http://feedproxy.google.com/~r/lysergicstudio/~3/svRxexE6VV8/</link>
		<comments>http://lysergicstudio.com/best-free-minimal-icon-set-for-your-next-design/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 10:54:19 +0000</pubDate>
		<dc:creator>Enrico Deleo</dc:creator>
				<category><![CDATA[freebies]]></category>
		<category><![CDATA[black and white]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[high contrast]]></category>
		<category><![CDATA[icon set]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[minimal]]></category>
		<category><![CDATA[pictogram]]></category>
		<category><![CDATA[tidy]]></category>

		<guid isPermaLink="false">http://lysergicstudio.com/?p=144</guid>
		<description><![CDATA[If you like minimal like us, you care about details. Icons are one of the most important part of a user interface and could be the only graphic element of a minimal design. This is the reason why you should chose the right icon set. You want tidy, well-designed, clean icons. The following sets are [...]]]></description>
			<content:encoded><![CDATA[<p>If you like minimal like us, you <strong>care about details</strong>. <strong>Icons</strong> are one of the most important part of a user interface and could be the only graphic element of a <strong>minimal design.</strong> This is the reason why you should chose the right icon set. You want tidy, well-designed, <strong>clean icons</strong>.</p>
<p>The following sets are <strong>the best minimal-looking icon set around the web, free of charge</strong>.</p>
<h2>Pictodeck</h2>
<p><a href="http://www.noupe.com/freebie/pictodeck-icon-set-over-700-free-pictograms-for-keynote.html"><img title="minimal_icons_2" src="http://www.erriko.it/wp-content/2011/04/minimal_icons_2.jpg" alt="" width="540" height="359" /></a></p>
<h2>Pictoico</h2>
<p><a href="http://pictoico.com/"><img title="minimal_icons_5" src="http://www.erriko.it/wp-content/2011/04/minimal_icons_5.jpg" alt="" width="540" height="406" /></a></p>
<h2>Glyphish</h2>
<p><a href="http://glyphish.com/"><img title="minimal_icons_7" src="http://www.erriko.it/wp-content/2011/04/minimal_icons_7.jpg" alt="" width="540" height="382" /></a></p>
<h2>Pixelated</h2>
<p><a href="http://plainbeta.com/downloads/pixelated-a-lightweight-iconkit/"><img title="minimal_icons_10" src="http://www.erriko.it/wp-content/2011/04/minimal_icons_10.jpg" alt="" width="540" height="135" /></a></p>
<h2>Iconic</h2>
<p><a href="http://somerandomdude.com/projects/iconic/"><img title="minimal_icons_14" src="http://www.erriko.it/wp-content/2011/04/minimal_icons_14.jpg" alt="" width="540" height="338" /></a></p>
<h2>Eclipse 2</h2>
<p><a href="http://chrfb.deviantart.com/art/quot-ecqlipse-2-quot-PNG-59941546"><img title="minimalistic_icons_21" src="http://www.erriko.it/wp-content/2011/04/minimalistic_icons_21.jpg" alt="" width="540" height="250" /></a></p>
<h2>Discons</h2>
<p><a href="http://icons.enlivenlabs.com/"><img title="discons1" src="http://www.erriko.it/wp-content/2011/04/discons1.png" alt="" width="500" height="300" /></a></p>
<h2>Mono Icons</h2>
<p><a href="http://www.tutorial9.net/downloads/108-mono-icons-huge-set-of-minimal-icons/"><img title="108-Mono-icons" src="http://www.erriko.it/wp-content/2011/04/108-Mono-icons.jpg" alt="" width="540" height="376" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=svRxexE6VV8:eMEYaNI4i5M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=svRxexE6VV8:eMEYaNI4i5M:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=svRxexE6VV8:eMEYaNI4i5M:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=svRxexE6VV8:eMEYaNI4i5M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=svRxexE6VV8:eMEYaNI4i5M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=svRxexE6VV8:eMEYaNI4i5M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=svRxexE6VV8:eMEYaNI4i5M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=svRxexE6VV8:eMEYaNI4i5M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=svRxexE6VV8:eMEYaNI4i5M:Fm376NFy3DY"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=svRxexE6VV8:eMEYaNI4i5M:Fm376NFy3DY" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/lysergicstudio/~4/svRxexE6VV8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lysergicstudio.com/best-free-minimal-icon-set-for-your-next-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://lysergicstudio.com/best-free-minimal-icon-set-for-your-next-design/</feedburner:origLink></item>
		<item>
		<title>Windmill with rotating wings with just jQuery</title>
		<link>http://feedproxy.google.com/~r/lysergicstudio/~3/drqZrtFE-4g/</link>
		<comments>http://lysergicstudio.com/windmill-with-rotating-wings-with-just-jquery/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 17:02:18 +0000</pubDate>
		<dc:creator>Enrico Deleo</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[proof of concept]]></category>
		<category><![CDATA[rotating images]]></category>
		<category><![CDATA[rotating wings]]></category>
		<category><![CDATA[windmill]]></category>

		<guid isPermaLink="false">http://lysergicstudio.com/?p=125</guid>
		<description><![CDATA[Here at LSD we really believe in green energy. Our server is powered by 100% wind energy. It&#8217;s a great thing, and we think is something to be proud of. With this post I want to show you a little proof of concept I&#8217;ve done this morning. It is a windmill with rotating wings I [...]]]></description>
			<content:encoded><![CDATA[<p>Here at LSD we really believe in green energy. <strong>Our server is powered by 100% wind energy</strong>.<br />
It&#8217;s a great thing, and we think is something to be proud of.</p>
<p>With this post I want to show you a little proof of concept I&#8217;ve done this morning. It is a <strong>windmill with rotating wings</strong> I realized with<strong> just jQuery</strong>.</p>
<p><img class="size-full wp-image-126 aligncenter" title="windmill" src="http://lysergicstudio.com/wp-content/uploads/2011/07/windmill.jpg" alt="" width="600" height="260" /></p>
<p style="text-align: center;"><a class="button_link" title="demo windmill with rotating wings" href="http://playground.lysergicstudio.com/demo/jquery/windmill/">demo</a></p>
<p>It would be<strong> great if used as a part of a layout</strong> for a green energy related business, isn&#8217;t it?</p>
<h3>Requirements</h3>
<ul style="clear:both;margin-bottom:20px;">
<li>jQuery</li>
<li><a title="jquery rotate plugin" href="http://code.google.com/p/jqueryrotate/">jqueryrotate</a></li>
<li>few minutes on Photoshop.</li>
</ul>
<h2>Photoshop</h2>
<p>Design the page in Photoshop. This image (without windmill) <strong>will be your background</strong>.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.40.13.png"><img class="size-large wp-image-128 aligncenter" title="base design" src="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.40.13-610x452.png" alt="" width="610" height="452" /></a></p>
<p>Remember to <strong>design windmill in 2 layers</strong>: one for the body and another for wings.</p>
<p>Hide the bg layer, select everything and do a CMD+Shift+C (or CTRL+Shift+C in Windows).</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.43.42.png"><img class="size-large wp-image-129 aligncenter" title="Schermata 2011-07-10 a 18.43.42" src="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.43.42-610x407.png" alt="" width="610" height="407" /></a></p>
<p>Create a new file, Photoshop will suggest the right size (according to the size of our windmill).<br />
Past there the windmill.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.47.32.png"><img class="size-large wp-image-130 aligncenter" title="windmill's file" src="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.47.32-610x469.png" alt="" width="610" height="469" /></a></p>
<p>Go back to the previous file and copy the layer containing the body of the windmill. Paste it on the new file. Pay attention to position it over the previous layer and remove the layer with wings.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.51.45.png"><img class="size-large wp-image-131 aligncenter" title="windmill body" src="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.51.45-610x570.png" alt="" width="610" height="570" /></a></p>
<p>Save the wings&#8217; layer as png file.</p>
<p><a href="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.53.03.png"><img class="size-full wp-image-132 aligncenter" title="wings" src="http://lysergicstudio.com/wp-content/uploads/2011/07/Schermata-2011-07-10-a-18.53.03.png" alt="" width="549" height="468" /></a></p>
<p>At last you should have 3 files: a background, a png file with the windmill&#8217;s body and a png file with wings.</p>
<h2>HTML Markup</h2>
<pre class="brush: xml; title: ; notranslate">

&lt;div id=&quot;bg&quot;&gt;
&lt;div id=&quot;windmill&quot;&gt;
&lt;div id=&quot;wings&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<p><strong>Before</strong> the code below, you should paste a CSS reset <a title="css reset" href="http://meyerweb.com/eric/tools/css/reset/">like this</a>. You have to specify your own images and set the size and position of the windmill accordingly to your needs.</p>
<pre class="brush: css; title: ; notranslate">

html,body{
width:100%;
height:100%;
display:block;
}

#bg{
background: url(...); &lt;!-- url to bg --&gt;
background-position: bottom left;
position:relative;
}

#windmill{
background:url(...) top left no-repeat; &lt;!-- url to the windmill's body --&gt;
width:276px;
height:447px;
display:block;
position:absolute;
bottom:50px;
left:500px;
}

#wings{
background:url(...) top left no-repeat; &lt;!-- url to wings --&gt;
width:276px;
height:276px;
}
</pre>
<p>As you can see I just set a background and positioned the windmill <em>absolutely</em>. The wings are added right into the windmill div.</p>
<p>I used<strong> <em>bottom</em> as reference for positioning</strong> in spite of top in order to have compatibility even if the size of the window is smaller than mine.</p>
<h2>jQuery</h2>
<pre class="brush: jscript; title: ; notranslate">

$(document).ready(function() {

//set browser's window size
width = screen.width;
height = screen.height;
$('#bg').css({'min-height': height, 'min-width': width});

//continuously rotate wings
var rotation = function (){
$(&quot;#flaps&quot;).rotate({
angle:0,
animateTo:360,
callback: rotation,
easing: function (x,t,b,c,d){
return c*(t/d)+b;
}
});
}
rotation();

});
</pre>
<h2>Conclusion</h2>
<p>If everything is gone right, you should have a page like that of the demo. You can use it as <strong>a base for your next green energy inspired design</strong> ;)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=drqZrtFE-4g:A_QobAQIw_o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=drqZrtFE-4g:A_QobAQIw_o:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=drqZrtFE-4g:A_QobAQIw_o:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=drqZrtFE-4g:A_QobAQIw_o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=drqZrtFE-4g:A_QobAQIw_o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=drqZrtFE-4g:A_QobAQIw_o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=drqZrtFE-4g:A_QobAQIw_o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=drqZrtFE-4g:A_QobAQIw_o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/lysergicstudio?a=drqZrtFE-4g:A_QobAQIw_o:Fm376NFy3DY"><img src="http://feeds.feedburner.com/~ff/lysergicstudio?i=drqZrtFE-4g:A_QobAQIw_o:Fm376NFy3DY" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/lysergicstudio/~4/drqZrtFE-4g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://lysergicstudio.com/windmill-with-rotating-wings-with-just-jquery/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://lysergicstudio.com/windmill-with-rotating-wings-with-just-jquery/</feedburner:origLink></item>
	</channel>
</rss>

