<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blogfreakz.com &#187; Web Design</title>
	<atom:link href="http://blogfreakz.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:40:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>jQuery Animated Cartoon Robot</title>
		<link>http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/</link>
		<comments>http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 00:00:54 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[robot]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24953</guid>
		<description><![CDATA[One of the coolest things about jQuery is that you can experiment with it, like with this animated robot. Here is a sample of how one can do this, based on Anthony Calzadilla’s design. It&#8217;s easy to modify and loads fast, with the end product similar to Flash designs but with more advantages. Web designers [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong> </strong></p>
<p>One of the coolest things about jQuery is that you can experiment with it, like with this animated robot. Here is a sample of how one can do this, based on Anthony Calzadilla’s <a href="http://css-tricks.com/jquery-robot/" target="_blank"><strong>design</strong></a>.</p>
<p>It&#8217;s easy to modify and loads fast, with the end product similar to Flash designs but with more advantages. Web designers and developers are sure to find this tutorial inspiring!</p>
<p style="text-align: center;"><a href="http://robot.anthonycalzadilla.com/" target="_blank"><img class="aligncenter size-medium wp-image-24954" title="Robot" src="http://blogfreakz.com/wp-content/uploads/2012/02/Robot-285x175.jpg" alt="Robot 285x175 jQuery Animated Cartoon Robot" width="285" height="175" /></a><strong>Click on the above image to see the demo.</strong></p>
<p>Below are the codes for this awesome animation.</p>
<p><strong>Markup</strong></p>
<pre><span style="color: #003366;">&lt;div id="wrapper"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="cloud-01"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="cloud-02"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="mountains-03"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="ground"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="full-robot"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="branding"&gt;&lt;h1&gt;Robot Head.&lt;/h1&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="content"&gt;&lt;p&gt; Robot Chest.&lt;/p&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="sec-content"&gt;&lt;p&gt; Robot Pelvis.&lt;/p&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="footer"&gt;&lt;p&gt; Robot Legs.&lt;/p&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<p><strong> </strong></p>
<p><strong>CSS Style</strong></p>
<p><strong> </strong></p>
<pre><span style="color: #003366;">h1, p { position: absolute; left: -9999px; }</span>

<span style="color: #003366;">div {position: relative;}</span>

<span style="color: #003366;">#wrapper { background: #bedfe4 url(../images/sun.png) no-repeat left -30px; border: 5px solid #402309;}</span>

<span style="color: #003366;">#cloud-01 { background: url(../images/clouds-01.png) no-repeat left -100px; }                                                         </span>

<span style="color: #003366;">#cloud-02 {                  background: url(../images/clouds-02.png) no-repeat left top; }</span>

<span style="color: #003366;">#mountains-03 { background: url(../images/mountain-03.png) no-repeat left bottom; }</span>

<span style="color: #003366;">#ground { background: url(../images/ground-05.png) no-repeat left bottom; }</span>

<span style="color: #003366;">#full-robot { width: 271px; }</span>

<span style="color: #003366;">#branding {</span>
<span style="color: #003366;">                    background: url(../images/robot-head.png) no-repeat center top;</span>
<span style="color: #003366;">                    width: 271px;</span>
<span style="color: #003366;">                    height: 253px;</span>
<span style="color: #003366;">                    z-index: 4;</span>
<span style="color: #003366;">                    }</span>

<span style="color: #003366;">#content {</span>
<span style="color: #003366;">                    background: url(../images/robot-torso.png) no-repeat center top;</span>
<span style="color: #003366;">                    width: 271px;</span>
<span style="color: #003366;">                    height: 164px;</span>
<span style="color: #003366;">                    z-index: 3;</span>
<span style="color: #003366;">                    margin-top: -65px;</span>
<span style="color: #003366;">                    }</span>

<span style="color: #003366;">#sec-content {</span>
<span style="color: #003366;">                    background: url(../images/robot-hips.png) no-repeat center top;</span>
<span style="color: #003366;">                    width: 271px;</span>
<span style="color: #003366;">                    height: 124px;</span>
<span style="color: #003366;">                    z-index: 2;</span>
<span style="color: #003366;">                    margin-top: -90px;</span>
<span style="color: #003366;">                    }</span>

<span style="color: #003366;">#footer {</span>
<span style="color: #003366;">                    background: url('../images/robot-legs.png') no-repeat center top;</span>
<span style="color: #003366;">                    width: 271px;</span>
<span style="color: #003366;">                    height: 244px;</span>
<span style="color: #003366;">                    z-index: 1;</span>
<span style="color: #003366;">                    margin-top: -90px;</span>
<span style="color: #003366;">                    }</span></pre>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>jQuery Javascript </strong></p>
<pre><span style="color: #003366;">$(document).ready(function(){</span>
<span style="color: #003366;">$('#cloud-01').css({backgroundPosition: '0 -80px'});</span>
<span style="color: #003366;">$('#cloud-02').css({backgroundPosition: '0 -30px'});</span>
<span style="color: #003366;">$('#mountains-03').css({backgroundPosition: '0 50px'});</span>
<span style="color: #003366;">$('#trees-04').css({backgroundPosition: '0 50px'});</span>
<span style="color: #003366;">$('#ground').css({backgroundPosition: 'left bottom'});</span>
<span style="color: #003366;">$('#branding').css({backgroundPosition: 'center 0'});</span>
<span style="color: #003366;">$('#content').css({backgroundPosition: 'center 0'});</span>
<span style="color: #003366;">$('#sec-content').css({backgroundPosition: 'center 0'});</span>
<span style="color: #003366;">$('#footer').css({backgroundPosition: 'center 0'});</span>
<span style="color: #003366;">$('#wrapper').css({overflow: "hidden"});</span>

<span style="color: #003366;">                    $('#klicker').click(function(){</span>
<span style="color: #003366;">                                         $('#cloud-01').animate({backgroundPosition: '(-500px -80px)'}, 20000);</span>
<span style="color: #003366;">                                         $('#cloud-02').animate({backgroundPosition: '(-625px -30px)'}, 20000);</span>
<span style="color: #003366;">                                         $('#mountains-03').animate({backgroundPosition: '(-2500px 50px)'}, 20000);</span>
<span style="color: #003366;">                                         $('#ground').animate({backgroundPosition: '(-5000px bottom)'}, 20000);</span>

<span style="color: #003366;">                    startHim();</span>

<span style="color: #003366;">                    $("#full-robot").animate({left:"50%",marginLeft:"-150px"}, 2000);</span>
<span style="color: #003366;">                    setTimeout("leaveScreen()",15000);</span>
<span style="color: #003366;">                    });</span>

<span style="color: #003366;">});</span>

<span style="color: #003366;">var num = 1;</span>

<span style="color: #003366;">function startHim(){</span>
<span style="color: #003366;">                    num++;</span>
<span style="color: #003366;">                    $("#sec-content").animate({top:"-=5px"},150).animate({top:"+=5px"},150);</span>
<span style="color: #003366;">                    $("#content,#branding").animate({top:"-="+num+"px"},150).animate({top:"+="+num+"px"},150);</span>
<span style="color: #003366;">                    if(num&lt;4){</span>
<span style="color: #003366;">                                         setTimeout("startHim()",300);</span>
<span style="color: #003366;">                    } else {</span>
<span style="color: #003366;">                                         setTimeout("bounceHim()",300);</span>
<span style="color: #003366;">                    }</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">function bounceHim(){</span>
<span style="color: #003366;">                    $("#sec-content,#branding").animate({top:"-=4px"},150).animate({top:"+=4px"},150);</span>
<span style="color: #003366;">                                         $("#content").animate({top:"-=8px"},150).animate({top:"+=8px"},150);</span>
<span style="color: #003366;">                    setTimeout("bounceHim()",300);</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">function leaveScreen(){</span>
<span style="color: #003366;">                    $("#full-robot").animate({left:"100%",marginLeft:"0px"}, 2000);</span>
<span style="color: #003366;">}</span></pre>
<p><strong> </strong><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/" title="$(#content) animate margin-right">$(#content) animate margin-right</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/" title="animated pictures">animated pictures</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/" title="any simple cartoon borders">any simple cartoon borders</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/" title="html5 jquery animation robot">html5 jquery animation robot</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/" title="png cartoon">png cartoon</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/" title="robotics animation jquery">robotics animation jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/jquery-animated-cartoon-robot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>turn.js: A jQuery Page Flip Effect For HTML5</title>
		<link>http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/</link>
		<comments>http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 06:15:05 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[free plugin]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[turn.js]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24947</guid>
		<description><![CDATA[Turn.js is a jQuery plugin that&#8217;s inspired by the effect found in iBooks and Maps for iOS, which simulates the act of flipping through a book&#8217;s pages. As described by creator Emmanuel Garcia, this effect will go well with sites about books, magazines, or any reading material. Click on the image below for the demo. [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>Turn.js is a jQuery plugin that&#8217;s inspired by the effect found in iBooks and Maps for iOS, which simulates the act of flipping through a book&#8217;s pages. As described by creator <a href="http://www.turnjs.com/#credits" target="_blank"><strong>Emmanuel Garcia</strong></a>, this effect will go well with sites about books, magazines, or any reading material. Click on the image below for the demo.</p>
<p><a href="http://www.turnjs.com/#home" target="_blank"><img class="aligncenter size-large wp-image-24948" title="turn.js" src="http://blogfreakz.com/wp-content/uploads/2012/02/127-296x250.jpg" alt="127 296x250 turn.js: A jQuery Page Flip Effect For HTML5" width="296" height="250" /></a></p>
<p>You may download a copy of the light version <a href="http://www.turnjs.com/turn.min.js"><strong>here</strong></a> or the full version <a href="https://github.com/blasten/turn.js"><strong>here</strong></a>.</p>
<p>Below are snippets of the plugin:</p>
<p><strong>CSS</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">#magazine{</span></pre>
<pre><span style="color: #003366;">width:800px;</span></pre>
<pre><span style="color: #003366;">height:400px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#magazine .turn-page{</span></pre>
<pre><span style="color: #003366;">width:400px;</span></pre>
<pre><span style="color: #003366;">height:400px;</span></pre>
<pre><span style="color: #003366;">background-color:#ccc;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre>&lt;<span style="color: #003366;">div id='magazine'&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt; Page   1 &lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt; Page   2 &lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt; Page   3 &lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p><strong>jQuery</strong></p>
<table border="1" cellspacing="0" cellpadding="0" width="639" height="25">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">$('#magazine').turn();</span></pre>
</td>
</tr>
</tbody>
</table>
<p>That’s it! The plugin requires jQuery 1.7 or later and only weighs in at 15K. It also works on tablets and smartphones.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="jquery multi book flip">jquery multi book flip</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="html5 design effect">html5 design effect</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="jquery book">jquery book</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="animated page flip demo in jquery">animated page flip demo in jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="turn js flip turning">turn js flip turning</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="pageflip mootools">pageflip mootools</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="page flip effect html5">page flip effect html5</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="jquery page flip demo">jquery page flip demo</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="jquery book flip">jquery book flip</a></li>
<li><a href="http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/" title="jquery">jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/turn-js-a-jquery-page-flip-effect-for-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Multi-Node Range and Data Slider</title>
		<link>http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/</link>
		<comments>http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 04:35:31 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Gallery/Carousel/Slider]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[free tutorial]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24940</guid>
		<description><![CDATA[This is another jQuery slider that would amp up your website’s interface. The multi-node range and data slider, created by EGrappler, is extremely simple to use. It is highly customizable and has many functions aside from providing data selection and filtering. Click on the image for the demo. Download the zip file. &#160; CSS .slider.default [...]]]></description>
			<content:encoded><![CDATA[<p>This is another jQuery slider that would amp up your website’s interface. The multi-node range and data slider, created by <a href="http://www.egrappler.com/" target="_blank"><strong>EGrappler</strong></a>, is extremely simple to use. It is highly customizable and has many functions aside from providing data selection and filtering.</p>
<p style="text-align: center;"><a href="http://www.egrappler.com/jqslider/demo.htm" target="_blank"><img class="aligncenter size-full wp-image-24941" title="Multi-Node Slider" src="http://blogfreakz.com/wp-content/uploads/2012/02/Multi-Node-Slider.jpg" alt="Multi Node Slider jQuery Multi Node Range and Data Slider" width="467" height="231" /></a><strong>Click on the image for the demo.</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>Download the <a href="http://www.egrappler.com/jqslider/jqslider.zip" target="_blank"><strong>zip file</strong></a>.</p>
<p><strong> </strong></p>
<p>&nbsp;</p>
<p><strong>CSS</strong></p>
<pre><span style="color: #003366;">.slider.default</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">background-color: #D2DBEC;</span></pre>
<pre><span style="color: #003366;">border: 1px solid #299BC9;</span></pre>
<pre><span style="color: #003366;">-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset;</span></pre>
<pre><span style="color: #003366;">-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset;</span></pre>
<pre><span style="color: #003366;">width: 200px;</span></pre>
<pre><span style="color: #003366;">height: 4px;</span></pre>
<pre><span style="color: #003366;">background-image: -o-linear-gradient(#ADC7EB, #D2DBEC);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.inner.default</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">background: #299BC9;</span></pre>
<pre><span style="color: #003366;">-moz-box-shadow: 0 1px 2px rgba(17, 35, 45, 0.6) inset;</span></pre>
<pre><span style="color: #003366;">-webkit-box-shadow: 0 1px 2px rgba(17, 35, 45, 0.6) inset;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.draghandle.default</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">width: 8px;</span></pre>
<pre><span style="color: #003366;">height: 20px;</span></pre>
<pre><span style="color: #003366;">background-color: #299BC9;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.draghandle.default.selected</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">background-color: #ADC7EB;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<p><strong><br />
</strong></p>
<p>The above code is for the default theme, and you can change it into your theme name. Aside from the default theme, you can choose from the following theme colors: simple, blue, steel, green, dark-green, orange and red.</p>
<p>When your theme is all set, you can use it like so:</p>
<pre><span style="color: #003366;">$('#my-slider').jqslider({theme:'YOUR THEME NAME HERE'});</span></pre>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p>Add the following in the head section of your HTML file</p>
<ol>
<li>Add a reference to latest jQuery script</li>
<li>Add a reference to jqslider.js</li>
<li>Add a reference to jqslider.css</li>
</ol>
<p>Add block element (div) within body of HTML and assign id and call jqslider initialize function.</p>
<pre><span style="color: #003366;">&lt;div id="jqslider"&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript"&gt;</span></pre>
<pre><span style="color: #003366;">$(document).ready(function() {</span></pre>
<pre><span style="color: #003366;">$('#jqslider').jqslider({ theme:'steel' });</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">&lt;/script&gt;</span></pre>
<table border="0" cellspacing="0" cellpadding="0" width="1" height="14">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/" title="blogger jQuery">blogger jQuery</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/" title="jquery chart fillcolor">jquery chart fillcolor</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/" title="jquery multi range slider">jquery multi range slider</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/" title="jquery multi slider range">jquery multi slider range</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/" title="jquery range slider -ui">jquery range slider -ui</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/jquery-multi-node-range-and-data-slider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jVectorMap: An Interactive jQuery Map</title>
		<link>http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/</link>
		<comments>http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:43:33 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[vector artwork]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24826</guid>
		<description><![CDATA[Integrate an interactive map into your website with jVectorMap. This is a jQuery plugin which shows vector maps on HTML pages and applies SVG in all contemporary modern browsers ranging from ancient IE 6 to 8, Chrome, Opera, IE9, Safari, Firefox. All you have to do is connect Javascript and CSS files of plugin and [...]]]></description>
			<content:encoded><![CDATA[<p>Integrate an interactive map into your website with jVectorMap. This is a jQuery plugin which shows vector maps on HTML pages and applies SVG in all contemporary modern browsers ranging from ancient IE 6 to 8, Chrome, Opera, IE9, Safari, Firefox. All you have to do is connect Javascript and CSS files of plugin and that’s it! You can also change its parameters easily.</p>
<p><a href="http://www.webappers.com/img/2011/06/vector-map.png" target="_blank"><img class="aligncenter size-medium wp-image-24827" title="Vector Map" src="http://blogfreakz.com/wp-content/uploads/2012/02/115-285x175.jpg" alt="115 285x175 jVectorMap: An Interactive jQuery Map" width="285" height="175" /></a></p>
<p><strong> </strong></p>
<p><strong></strong>You can check out the full tutorial <a href="http://jvectormap.owl-hollow.net/" target="_blank"><strong>HERE.</strong></a></p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="interactive jquery map">interactive jquery map</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jquery interactive map">jquery interactive map</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jvectormap tutorial">jvectormap tutorial</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jvectormap">jvectormap</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="javascript heat map">javascript heat map</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="extra maps for jvectormap">extra maps for jvectormap</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jqurery interactive map">jqurery interactive map</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jvectormap automatic color">jvectormap automatic color</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jvectormap converter">jvectormap converter</a></li>
<li><a href="http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/" title="jvectormap database">jvectormap database</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/jvectormap-an-interactive-jquery-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create YouTube Popup Buttons with CSS</title>
		<link>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/</link>
		<comments>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 11:53:12 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24819</guid>
		<description><![CDATA[Here&#8217;s  a very cool CSS trick I found that will let you have the same buttons as those in YouTube&#8217;s footer! But first, lots of thanks to the following coders below: Dennis Sa - for the jsbin of the matte buttons http://jsbin.com/efesot/6 Trevor Gerzen – for applying the transitions, and Chris Coyier &#8211; for coming [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;"> </span></strong>Here&#8217;s  a very cool CSS trick I found that will let you have the same buttons as those in YouTube&#8217;s footer! But first, lots of thanks to the following coders below:</p>
<ul>
<li><a href="http://forrst.me/mdennisa"><strong>Dennis Sa</strong></a><strong> </strong>- for the jsbin of the matte buttons http://jsbin.com/efesot/6</li>
<li><a href="http://dabblet.com/gist/1590204"><strong>Trevor Gerzen</strong></a><strong> </strong>– for applying the transitions, and</li>
<li><a href="http://chriscoyier.net/"><strong>Chris Coyier</strong></a> &#8211; for coming up with this neat trick and sharing it on the web.</li>
</ul>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24821" title="YouTube buttons" src="http://blogfreakz.com/wp-content/uploads/2012/02/114-285x117.jpg" alt="114 285x117 How to Create YouTube Popup Buttons with CSS" width="285" height="117" /></p>
<p>&nbsp;</p>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;button role=&#8221;button&#8221;&gt;</span></p>
<p><span style="color: #003366;">Button #1</span></p>
<p><span style="color: #003366;">&lt;/button&gt;</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>As for the base styles for all three states (default, hover, active):</p>
<p><strong>CSS</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">.button {</span></p>
<p><span style="color: #003366;">border: 1px solid #DDD;</span></p>
<p><span style="color: #003366;">border-radius: 3px;</span></p>
<p><span style="color: #003366;">text-shadow: 0 1px 1px   white;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: 0 1px   1px #fff;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    0 1px 1px #fff;</span></p>
<p><span style="color: #003366;">box-shadow:         0 1px 1px #fff;</span></p>
<p><span style="color: #003366;">font: bold 11px Sans-Serif;</span></p>
<p><span style="color: #003366;">padding: 6px 10px;</span></p>
<p><span style="color: #003366;">white-space: nowrap;</span></p>
<p><span style="color: #003366;">vertical-align: middle;</span></p>
<p><span style="color: #003366;">color: #666;</span></p>
<p><span style="color: #003366;">background: transparent;</span></p>
<p><span style="color: #003366;">cursor: pointer;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.button:hover, .button:focus {</span></p>
<p><span style="color: #003366;">border-color: #999;</span></p>
<p><span style="color: #003366;">background:   -webkit-linear-gradient(top, white, #E0E0E0);</span></p>
<p><span style="color: #003366;">background:    -moz-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">background:     -ms-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">background:      -o-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: 0 1px   2px rgba(0,0,0,0.25), inset 0 0 3px #fff;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    0 1px 2px rgba(0,0,0,0.25), inset 0 0 3px   #fff;</span></p>
<p><span style="color: #003366;">box-shadow:         0 1px 2px rgba(0,0,0,0.25), inset 0   0 3px #fff;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.button:active {</span></p>
<p><span style="color: #003366;">border: 1px solid #AAA;</span></p>
<p><span style="color: #003366;">border-bottom-color: #CCC;</span></p>
<p><span style="color: #003366;">border-top-color: #999;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: inset 0   1px 2px #aaa;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    inset 0 1px 2px #aaa;</span></p>
<p><span style="color: #003366;">box-shadow:         inset 0 1px 2px #aaa;</span></p>
<p><span style="color: #003366;">background:   -webkit-linear-gradient(top, #E6E6E6, gainsboro);</span></p>
<p><span style="color: #003366;">background:    -moz-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">background:     -ms-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">background:      -o-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>NOTE</strong>: This is short tutorial just teaches you how to mimic the look and not the function. So if you want to be able to include menu functionality on the buttons (like YouTube does) you can check out this<strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/5-ways-to-make-ajax-calls-with-jquery/">link</a></strong> and try incorporating the code there with the one here.</p>
<p><a href="http://css-tricks.com/examples/YouTubeButtons/"><strong>Demo</strong></a></p>
<p><a href="http://css-tricks.com/examples/YouTubeButtons.zip"><strong>Download Files</strong></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="popup white css">popup white css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube icons">youtube icons</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="button popup css">button popup css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube">youtube</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="how to design button like youtube with css">how to design button like youtube with css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="free css web popup design">free css web popup design</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="css3 free template">css3 free template</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="css youtube style button">css youtube style button</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="Cool 61 css">Cool 61 css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube style popup buttons">youtube style popup buttons</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyTips jQuery Plugin</title>
		<link>http://blogfreakz.com/web-design/tinytips-jquery-plugin/</link>
		<comments>http://blogfreakz.com/web-design/tinytips-jquery-plugin/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 06:14:01 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[jQuery plugin]]></category>
		<category><![CDATA[plguin]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24811</guid>
		<description><![CDATA[Web designer Mike Merritt designed a jQuery plugin that will give more definition on your web site by adding tooltips to any element on a page. You can check out his work in this DEMO. Download the development version and production version zip files. HTML &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;meta http-equiv=&#8221;Content-type&#8221; content=&#8221;text/html; charset=utf-8&#8243;&#62; &#60;title&#62;tinyTips 1.0&#60;/title&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Web designer <a href="http://www.mikemerritt.me/" target="_blank"><strong>Mike Merritt</strong></a> designed a jQuery plugin that will give more definition on your web site by adding tooltips to any element on a page. You can check out his work in this <a href="http://www.mikemerritt.me/demos/tt-1-1/index.html" target="_blank"><strong>DEMO. </strong></a></p>
<p>Download the <a href="http://www.mikemerritt.me/plugins/tinyTips/tiny.tips.1.1.dev.zip" target="_blank"><strong>development version</strong></a> and <a href="http://www.mikemerritt.me/plugins/tinyTips/tiny.tips.1.1.min.zip" target="_blank"><strong>production version</strong></a> zip files.</p>
<p><strong> </strong></p>
<p><a href="http://maxcdn.webappers.com/img/2010/02/tiny-tooltips.jpg"><img class="aligncenter size-medium wp-image-24812" title="Tiny Tips" src="http://blogfreakz.com/wp-content/uploads/2012/02/113-285x175.jpg" alt="113 285x175 TinyTips jQuery Plugin" width="285" height="175" /></a></p>
<p><strong>HTML</strong></p>
<p><strong><br />
</strong></p>
<p><span style="color: #003366;">&lt;!DOCTYPE html&gt;</span></p>
<p><span style="color: #003366;">&lt;html&gt;</span></p>
<p><span style="color: #003366;">&lt;head&gt;</span></p>
<p><span style="color: #003366;">&lt;meta http-equiv=&#8221;Content-type&#8221; content=&#8221;text/html; charset=utf-8&#8243;&gt;</span></p>
<p><span style="color: #003366;">&lt;title&gt;tinyTips 1.0&lt;/title&gt;</span></p>
<p><span style="color: #003366;">&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; href=&#8221;/path/to/yourStyleSheet.css&#8221; /&gt;</span></p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/path/to/jquery.tinyTips.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221;&gt;</span></p>
<p><span style="color: #003366;">$(document).ready(function() {</span></p>
<p><span style="color: #003366;">$(&#8216;a.tTip&#8217;).tinyTips(&#8216;light&#8217;, &#8216;title&#8217;);</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">&lt;/script&gt;</span></p>
<p><span style="color: #003366;">&lt;/head&gt;</span></p>
<p><span style="color: #003366;">&lt;body&gt;</span></p>
<p><span style="color: #003366;">&lt;div id=&#8221;global_wrapper&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;h1&gt;Testing tinyTips&lt;/h1&gt;</span></p>
<p><span style="color: #003366;">&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span></p>
<p><span style="color: #003366;">&lt;a class=&#8221;tTip&#8221; href=&#8221;#&#8221; title=&#8221;This tooltip is using the title of this anchor tag.&#8221;&gt;Aenean ut nunc metus&lt;/a&gt;, gravida tincidunt libero.</span></p>
<p><span style="color: #003366;">Proin molestie risus at odio luctus condimentum. Sed molestie bibendum orci a faucibus. Vivamus vel lorem ut augue laoreet cursus.</span></p>
<p><span style="color: #003366;">Maecenas vestibulum nibh non nibh viverra posuere. Sed &lt;a href=&#8221;#&#8221; title=&#8221;This one is also using the title.&#8221;&gt;tristique eleifend&lt;/a&gt; elit sit amet varius.&lt;/p&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;/body&gt;</span></p>
<p><span style="color: #003366;">&lt;/html&gt;</span></p>
<p><span style="color: #003366;"><br />
</span></p>
<p><span style="color: #003366;"><strong> </strong></span></p>
<p><span style="color: #000000;"><strong>jQuery/Javascript</strong></span></p>
<p><span style="color: #000000;">Place the following at the head of your page as you include the TinyTips and jQuery.</span></p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/path/to/jquery.tinyTips.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><strong> </strong></p>
<p>To add tooltips, use the following:</p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221;&gt;</span></p>
<p><span style="color: #003366;">$(document).ready(function() {</span></p>
<p><span style="color: #003366;">$(&#8216;a.tTip&#8217;).tinyTips(&#8216;light&#8217;, &#8216;title&#8217;);</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">&lt;/script&gt;</span></p>
<p>Do provide a tooltip style and content attribute.</p>
<p>Add the following to the stylesheet. You can create your own style by naming the class .yournameTip and use your name as the tip style. By using the dev version, you can also modify the markup for tooltips.</p>
<p><span style="color: #003366;">.lightTip                       { width: 342px; }</span></p>
<p><span style="color: #003366;">.lightTip .content              { width: 310px; padding: 10px; border: 6px solid #e2e2e2; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #ffffff; color: #020202; }</span></p>
<p><span style="color: #003366;">.lightTip .bottom               { height: 14px; background: url(../images/notch-white.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.yellowTip                      { width: 342px; }</span></p>
<p><span style="color: #003366;">.yellowTip .content             { width: 310px; padding: 10px; border: 6px solid #f9e98e; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #fbf7aa; color: #020202; }</span></p>
<p><span style="color: #003366;">.yellowTip .bottom              { height: 14px; background: url(../images/notch-yellow.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.orangeTip                      { width: 342px; }</span></p>
<p><span style="color: #003366;">.orangeTip .content             { width: 310px; padding: 10px; border: 6px solid #f9cd8e; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #fbe3aa; color: #020202; }</span></p>
<p><span style="color: #003366;">.orangeTip .bottom              { height: 14px; background: url(../images/notch-orange.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.redTip                         { width: 342px; }</span></p>
<p><span style="color: #003366;">.redTip .content                { width: 310px; padding: 10px; border: 6px solid #ce6f6f; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #f79992; color: #020202; }</span></p>
<p><span style="color: #003366;">.redTip .bottom                 { height: 14px; background: url(../images/notch-red.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.greenTip                       { width: 342px; }</span></p>
<p><span style="color: #003366;">.greenTip .content              { width: 310px; padding: 10px; border: 6px solid #a9db66; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #cae8a2; color: #020202; }</span></p>
<p><span style="color: #003366;">.greenTip .bottom               { height: 14px; background: url(../images/notch-green.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.blueTip                        { width: 342px; }</span></p>
<p><span style="color: #003366;">.blueTip .content               { width: 310px; padding: 10px; border: 6px solid #36a4d9; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #90d8f0; color: #020202; }</span></p>
<p><span style="color: #003366;">.blueTip .bottom                { height: 14px; background: url(../images/notch-blue.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.purpleTip                      { width: 342px; }</span></p>
<p><span style="color: #003366;">.purpleTip .content             { width: 310px; padding: 10px; border: 6px solid #8671de; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #a290f0; color: #020202; }</span></p>
<p><span style="color: #003366;">.purpleTip .bottom              { height: 14px; background: url(../images/notch-purple.png) top center no-repeat; }</span></p>
<p><span style="color: #003366;">.darkTip                        { width: 342px; }</span></p>
<p><span style="color: #003366;">.darkTip .content               { width: 310px; padding: 10px; border: 6px solid #303030; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #505050; color: #f8f8f8; }</span></p>
<p><span style="color: #003366;">.darkTip .bottom                { height: 14px; background: url(../images/notch-dark.png) top center no-repeat; }</span><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="jquery light menu">jquery light menu</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="tinytips plugin">tinytips plugin</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="path app tooltip jquery">path app tooltip jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="popup jquery TEXT IMAGE">popup jquery TEXT IMAGE</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="TinyTips document">TinyTips document</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="googleapis jquery">googleapis jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="tinytips js explorer 9">tinytips js explorer 9</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="tinytips js">tinytips js</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="TinyTips jQuery Plugin">TinyTips jQuery Plugin</a></li>
<li><a href="http://blogfreakz.com/web-design/tinytips-jquery-plugin/" title="tinytips jquery">tinytips jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/tinytips-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quaintly Designed CSS Typographic Grid</title>
		<link>http://blogfreakz.com/others/a-quaintly-designed-css-typographic-grid/</link>
		<comments>http://blogfreakz.com/others/a-quaintly-designed-css-typographic-grid/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 13:17:02 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS Layout]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[typographic grid]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24794</guid>
		<description><![CDATA[Here&#8217;s a very fascinating take on creating a CSS grid by Chris Coyier. If you&#8217;re site is text-heavy then this kind of layout might suit it perfectly. Check out the demo to see how it works. Horizontal Grid &#160; Vertical Grid The concept is inspired by one Richard Rutter with his article Compose to a [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a very fascinating take on creating a CSS grid by <a href="http://chriscoyier.net/"><strong>Chris Coyier</strong></a>. If you&#8217;re site is text-heavy then this kind of layout might suit it perfectly. Check out the <a href="http://css-tricks.com/examples/TypographicGrid/"><strong>demo</strong></a> to see how it works.</p>
<p style="text-align: center;"><a href="http://blog.webexpedition18.netdna-cdn.com/wp-content/uploads/2011/11/01grid.jpg" target="_blank"><img class="aligncenter size-large wp-image-24795" title="Horizontal Grid" src="http://blogfreakz.com/wp-content/uploads/2012/02/111-569x250.jpg" alt="111 569x250 A Quaintly Designed CSS Typographic Grid" width="569" height="250" /></a><strong>Horizontal Grid</strong></p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://css-tricks.com/examples/TypographicGrid/" target="_blank"><img class="aligncenter size-large wp-image-24796" title="Vertical Grid" src="http://blogfreakz.com/wp-content/uploads/2012/02/210-570x250.jpg" alt="210 570x250 A Quaintly Designed CSS Typographic Grid" width="570" height="250" /></a><strong>Vertical Grid</strong></p>
<p>The concept is inspired by one <strong>Richard Rutter</strong> with his article <a href="http://24ways.org/2006/compose-to-a-vertical-rhythm"><strong>Compose to a Vertical Rhythm</strong></a>. If you&#8217;re having trouble trying to align your site&#8217;s font with the grid because of the size variation, you can use a few tools like <a href="http://topfunky.com/baseline-rhythm-calculator/"><strong>Baseline Rhythm Calculator</strong></a>, <a href="http://www.sprymedia.co.uk/article/Grid"><strong>Grid bookmarklet</strong></a>, and Adobe Air <a href="http://www.jameswhittaker.com/blog/article/em-based-layouts-vertical-rhythm-calculator/"><strong>EM calculator</strong></a> to help you out with the math. Or better yet, try getting some <a href="http://pxtoem.com/"><strong>EM-based CSS</strong></a>.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/a-quaintly-designed-css-typographic-grid/" title="grid css">grid css</a></li>
<li><a href="http://blogfreakz.com/others/a-quaintly-designed-css-typographic-grid/" title="simple website templates quaint">simple website templates quaint</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/a-quaintly-designed-css-typographic-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Free Beautiful Seamless Pattern Sets</title>
		<link>http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/</link>
		<comments>http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 12:38:30 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24751</guid>
		<description><![CDATA[Supplement your website with seamless background patterns and transform it into a work of art! I’ve collected 30 different types of equally beautiful patterns for you to try, and each set includes formats such as .jpg, .eps, .png, .ai and .pat. Click on the images below to view and grab them for free. Vector Patterns [...]]]></description>
			<content:encoded><![CDATA[<p>Supplement your website with seamless background patterns and transform it into a work of art! I’ve collected 30 different types of equally beautiful patterns for you to try, and each set includes formats such as .jpg, .eps, .png, .ai and .pat.</p>
<p>Click on the images below to view and grab them for free.</p>
<p style="text-align: center;"><strong>Vector Patterns Set 12 Patterns</strong></p>
<p style="text-align: center;"><a href="http://www.graphicswall.com/free-vector-patterns-set-03"><img class="aligncenter size-medium wp-image-24758" title="Vector Sets" src="http://blogfreakz.com/wp-content/uploads/2012/02/1-285x175.jpg" alt="1 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Grunge Stripes Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://illustratorcs6.com/12-grunge-stripes-patterns/"><img class="aligncenter size-medium wp-image-24759" title="Grunge Stripes" src="http://blogfreakz.com/wp-content/uploads/2012/02/2-285x175.jpg" alt="2 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Spring Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://vector.tutsplus.com/freebies/spring-pattern-vector-freebie/"><img class="aligncenter size-medium wp-image-24760" title="Spring" src="http://blogfreakz.com/wp-content/uploads/2012/02/3-285x175.jpg" alt="3 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Floral Vector Pattern</strong></p>
<p style="text-align: center;"><strong> </strong><a href="http://www.graphicswall.com/floral-vector-pattern-set"><img class="aligncenter size-medium wp-image-24761" title="Floral Vector" src="http://blogfreakz.com/wp-content/uploads/2012/02/4-285x175.jpg" alt="4 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Geometric Pattern Set</strong></p>
<p style="text-align: center;"><strong><a href="http://www.graphicswall.com/geometric-vector-pattern-set"><img class="aligncenter size-medium wp-image-24763" title="Geometric " src="http://blogfreakz.com/wp-content/uploads/2012/02/5-285x175.jpg" alt="5 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Renaissance Spring</strong></p>
<p style="text-align: center;"><strong><a href="http://www.pixelsandicecream.com/2011/05/new-free-pattern-renaissance-spring-by.html"><img class="aligncenter size-medium wp-image-24764" title="Renaissance Spring" src="http://blogfreakz.com/wp-content/uploads/2012/02/6-285x140.jpg" alt="6 285x140 30 Free Beautiful Seamless Pattern Sets" width="285" height="140" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Abstract Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://elemisfreebies.com/10/27/16-abstract-patterns-3/"><img class="aligncenter size-medium wp-image-24765" title="Abstract" src="http://blogfreakz.com/wp-content/uploads/2012/02/7-285x175.jpg" alt="7 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Paper Flowers Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://illustratorcs6.com/paper-flowers-pattern/"><img class="aligncenter size-medium wp-image-24766" title="Paper Flowers" src="http://blogfreakz.com/wp-content/uploads/2012/02/8-285x175.jpg" alt="8 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Diamonds and Gears Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://www.vecteezy.com/Seamless-Studio-Pattern-Contest/33387-Diamonds-and-Gears-pattern"><img class="aligncenter size-medium wp-image-24767" title="Diamonds and Gears" src="http://blogfreakz.com/wp-content/uploads/2012/02/9-285x175.jpg" alt="9 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Abstract Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://elemisfreebies.com/11/07/20-abstract-patterns/"><img class="aligncenter size-medium wp-image-24768" title="Abstract" src="http://blogfreakz.com/wp-content/uploads/2012/02/10-285x175.jpg" alt="10 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Blue Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://4moonlove.deviantart.com/art/Blue-Patterns-271077642"><img class="aligncenter size-medium wp-image-24770" title="Blue" src="http://blogfreakz.com/wp-content/uploads/2012/02/11-285x175.jpg" alt="11 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Seamless Camouflage Background Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://www.vecteezy.com/Patterns/38192-Free-Seamless-Camouflage-Pattern-Background-Vector---4-Colours"><img class="aligncenter size-medium wp-image-24771" title="Seamless Camouflage" src="http://blogfreakz.com/wp-content/uploads/2012/02/12-285x175.jpg" alt="12 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Pattern Kit One</strong></p>
<p style="text-align: center;"><strong><a href="http://dribbble.com/shots/183766-Pattern-Kit-One-Ribbon-Dancer-"><img class="aligncenter size-medium wp-image-24772" title="Ribbon Dancer" src="http://blogfreakz.com/wp-content/uploads/2012/02/13-285x175.jpg" alt="13 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Seamless Flower Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://mocii.com/free-vector-graphics/seamless-flower-patterns-vector/"><img class="aligncenter size-medium wp-image-24773" title="Seamless Flower" src="http://blogfreakz.com/wp-content/uploads/2012/02/14-285x175.jpg" alt="14 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Hand-Drawn Floral</strong></p>
<p style="text-align: center;"><strong><a href="http://www.patternhead.com/freebies/free-vector-pattern-hand-drawn-floral"><img class="aligncenter size-medium wp-image-24774" title="Hand-Drawn Floral" src="http://blogfreakz.com/wp-content/uploads/2012/02/15-285x175.jpg" alt="15 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Grey Seamless Pattern Set for Web Designers</strong></p>
<p style="text-align: center;"><strong><a href="http://www.graphicswall.com/gray-seamless-pattern-set-for-web-designers"><img class="aligncenter size-medium wp-image-24775" title="1Grey Seamless" src="http://blogfreakz.com/wp-content/uploads/2012/02/16-285x175.jpg" alt="16 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>TipClique Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://illustratorcs6.com/tipclique-photoshop-patterns/"><img class="aligncenter size-medium wp-image-24776" title="TipClique" src="http://blogfreakz.com/wp-content/uploads/2012/02/17-285x175.jpg" alt="17 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Four Seamless Vector Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://www.graphicswall.com/four-seamless-vector-patterns"><img class="aligncenter size-medium wp-image-24777" title="Four Seamless Vector" src="http://blogfreakz.com/wp-content/uploads/2012/02/18-285x175.jpg" alt="18 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Vintage Floral</strong></p>
<p style="text-align: center;"><strong><a href="http://www.patternhead.com/freebies/free-vector-pattern-vintage-floral"><img class="aligncenter size-medium wp-image-24778" title="Vintage Floral" src="http://blogfreakz.com/wp-content/uploads/2012/02/19-285x175.jpg" alt="19 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Vector Flower Set 02</strong></p>
<p style="text-align: center;"><strong><a href="http://www.graphicswall.com/vector-pattern-set-02"><img class="aligncenter size-medium wp-image-24779" title="Vector Flower Set 02" src="http://blogfreakz.com/wp-content/uploads/2012/02/20-285x175.jpg" alt="20 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong>Branches</strong></p>
<p style="text-align: center;"><strong><a href="http://www.patternhead.com/freebies/free-seamless-vector-branches"><img class="aligncenter size-medium wp-image-24781" title="Branches" src="http://blogfreakz.com/wp-content/uploads/2012/02/21-285x175.jpg" alt="21 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Zebra Print Vector Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://www.vecteezy.com/Birds-Animals/35195-Zebra-Print-Vector-Pattern"><img class="aligncenter size-medium wp-image-24782" title="Zebra Print Vector" src="http://blogfreakz.com/wp-content/uploads/2012/02/22-285x175.jpg" alt="22 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Free Vector Guilloche Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://www.vecteezy.com/Patterns/36627-Free-Vector-Guilloch--Patterns"><img class="aligncenter size-medium wp-image-24783" title="Guilloche" src="http://blogfreakz.com/wp-content/uploads/2012/02/23-285x175.jpg" alt="23 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Baby Pink Pastel Tileable Pattern</strong></p>
<p style="text-align: center;"><strong><a href="http://webtreats.mysitemyway.com/baby-pink-pastel-tileable-patterns/"><img class="aligncenter size-medium wp-image-24784" title="Baby Pink Pastel Tileable" src="http://blogfreakz.com/wp-content/uploads/2012/02/24-285x175.jpg" alt="24 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Photoshop Pattern Pack</strong></p>
<p style="text-align: center;"><strong><a href="http://www.mfcreative.co.uk/patternpack/"><img class="aligncenter size-medium wp-image-24785" title="Photoshop Pattern Pack" src="http://blogfreakz.com/wp-content/uploads/2012/02/25-285x175.jpg" alt="25 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Vintage Retro Grunge Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://webtreats.mysitemyway.com/vintage-retro-grunge-wallpaper-patterns-part-6/"><img class="aligncenter size-medium wp-image-24786" title="Vintage Retro Grunge " src="http://blogfreakz.com/wp-content/uploads/2012/02/26-285x175.jpg" alt="26 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Micro Patterns</strong></p>
<p style="text-align: center;"><strong><a href="http://illustratorcs6.com/micro-patterns/"><img class="aligncenter size-medium wp-image-24787" title="Micro Patterns" src="http://blogfreakz.com/wp-content/uploads/2012/02/27-285x175.jpg" alt="27 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>New Seamless Pattern Background</strong></p>
<p style="text-align: center;"><strong><a href="http://www.graphicswall.com/new-seamless-pattern-background-01"><img class="aligncenter size-medium wp-image-24788" title="New Seamless Pattern Background 01" src="http://blogfreakz.com/wp-content/uploads/2012/02/28-285x175.jpg" alt="28 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Colour Pattern Pack</strong></p>
<p style="text-align: center;"><strong><a href="http://www.mfcreative.co.uk/colourpatternpack/"><img class="aligncenter size-medium wp-image-24789" title="Colour Pattern Pack" src="http://blogfreakz.com/wp-content/uploads/2012/02/29-285x175.jpg" alt="29 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong>Mandala Madness Vector</strong></p>
<p style="text-align: center;"><strong><a href="http://www.vecteezy.com/Seamless-Studio-Pattern-Contest/33652-Mandala-Madness-Vector"><img class="aligncenter size-medium wp-image-24790" title="Mandala Madness" src="http://blogfreakz.com/wp-content/uploads/2012/02/30-285x175.jpg" alt="30 285x175 30 Free Beautiful Seamless Pattern Sets" width="285" height="175" /></a></strong></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="blue print geometric seamless">blue print geometric seamless</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="beautiful seamless noise backgrounds">beautiful seamless noise backgrounds</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="zebra pattern eps">zebra pattern eps</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="tumblr vintage pattern seamless">tumblr vintage pattern seamless</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="pattern backgrounds">pattern backgrounds</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="seamless pattern">seamless pattern</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="spring pattern">spring pattern</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="tileable animal print">tileable animal print</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="tileable zebra patterns">tileable zebra patterns</a></li>
<li><a href="http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/" title="website vintage seamless background patterns generator">website vintage seamless background patterns generator</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/30-free-beautiful-seamless-pattern-sets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a jQuery Star Comment Rating System</title>
		<link>http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/</link>
		<comments>http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 12:16:15 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[rating system]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24716</guid>
		<description><![CDATA[The commenting system just became more fun for users! Created by eligeske,  this animated jQuery star commenting system is a great way to rate your posts. Add this to your website and see your visitor activity increase. Download the ZIP FILE. &#160; HTML (star_rating.html) &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62; &#60;html xmlns="http://www.w3.org/1999/xhtml"&#62; &#60;head&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>The commenting system just became more fun for users! Created by <a href="http://eligeske.com/" target="_blank"><strong>eligeske</strong></a>,  this animated jQuery star commenting system is a great way to rate your posts. Add this to your website and see your visitor activity increase.</p>
<p>Download the <a href="http://eligeske.info/tutorials/jquery/star-rating/star-rating.zip" target="_blank"><strong>ZIP FILE. </strong></a></p>
<p>&nbsp;</p>
<p><strong> </strong></p>
<p><strong>HTML (star_rating.html)</strong></p>
<pre><span style="color: #003366;">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;head&gt;</span></pre>
<pre><span style="color: #003366;">&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;title&gt;JQuery-Star Comment Rating&lt;/title&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/jquery/jquery-1.3.2.min.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="js/star_rating.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;style type="text/css"&gt;</span></pre>
<pre><span style="color: #003366;">#rating_cont { background: #1E1D1C url(images/rating_background.jpg) top left no-repeat; border: 1px solid #F9BA0D; width: 140px; height: 23px; text-align: left; margin-left: 6px;}</span></pre>
<pre><span style="color: #003366;">#rating_on { background: url(images/rating_onbackground.jpg) top left no-repeat; width: 0px; height: 21px; position: relative; z-index: 50; top: -21px; }</span></pre>
<pre><span style="color: #003366;">#rated { display: none; width: 138px; padding: 3px 0px 3px 2px; height: 23px; background-color: #1E1D1C; height: 17px;font-size: 11px;color: #FFC910;}</span></pre>
<pre><span style="color: #003366;">#rated div { display: block; float: left; }</span></pre>
<pre><span style="color: #003366;">#rating { font-size: 11px; font-family: Arial, Helvetica, sans-serif; color: #FFC910; padding-left: 3px; width: 22px; }</span></pre>
<pre><span style="color: #003366;">#small_stars { height: 11px; width: 69px; background-image: url(images/stars_small_sprite.jpg); background-position: 0px -11px; font-size:1px; line-height: 11px; margin-top:3px; }</span></pre>
<pre><span style="color: #003366;">#rate_edit { line-height: 17px; font-size: 11px; font-family: Arial, Helvetica, sans-serif; color: #FFF; padding-left: 9px; cursor: pointer; }</span></pre>
<pre><span style="color: #003366;">#rate_edit:hover { text-decoration: underline; }</span></pre>
<pre><span style="color: #003366;">#rating_btns { position: relative; z-index: 100; width: 140px; height: 21px;}</span></pre>
<pre><span style="color: #003366;">#rating_btns ul, #rating_btns li { padding: 0; margin: 0; }</span></pre>
<pre><span style="color: #003366;">#rating_btns li { float: left; width: 14px; height: 21px; display: block; font-size: 1px; cursor: pointer; color: #1E1D1C;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">&lt;/style&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/head&gt;</span></pre>
<pre><span style="color: #003366;">&lt;body&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="rating_cont"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="rating_btns"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;0.5&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;1.0&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;1.5&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;2.0&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;2.5&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;3.0&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;3.5&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;4.0&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;4.5&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;5.0&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="rating_on" &gt;&amp;nbsp;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="rated"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="rating" style="height: 17px; line-height: 17px;"&gt;not rated&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt; &amp;#8211; &amp;nbsp;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="small_stars"&gt;&amp;nbsp;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="rate_edit"&gt;edit&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="hidden" id="rating_output" name="rating_output" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/body&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/html&gt;</span></pre>
<p><strong>jQuery/Jvascript (star_rating.js)</strong></p>
<pre><span style="color: #003366;">/*</span></pre>
<pre><span style="color: #003366;">* Written by eligeske</span></pre>
<pre><span style="color: #003366;">* downloaded from eligeske.com</span></pre>
<pre><span style="color: #003366;">* have fun. nerd.</span></pre>
<pre><span style="color: #003366;">*/</span></pre>
<pre><span style="color: #003366;">$(document).ready(function(){</span></pre>
<pre><span style="color: #003366;">// hover</span></pre>
<pre><span style="color: #003366;">$('#rating_btns li').hover(function(){</span></pre>
<pre><span style="color: #003366;">$rating = $(this).text();</span></pre>
<pre><span style="color: #003366;">$('#rating_on').css('width', rateWidth($rating));</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">// mouseout</span></pre>
<pre><span style="color: #003366;">$('#rating_btns li').mouseout(function(){</span></pre>
<pre><span style="color: #003366;">$rating = $('#rating').text();</span></pre>
<pre><span style="color: #003366;">if($rating == "not rated"){</span></pre>
<pre><span style="color: #003366;">$('#rating_on').css('width', "0px");</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">else{</span></pre>
<pre><span style="color: #003366;">$('#rating_on').css('width', rateWidth($rating));</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">//click</span></pre>
<pre><span style="color: #003366;">$('#rating_btns li').click(function(){</span></pre>
<pre><span style="color: #003366;">$rating = $(this).text();</span></pre>
<pre><span style="color: #003366;">$('#rating').text($rating);</span></pre>
<pre><span style="color: #003366;">$('#rating_output').val($rating);</span></pre>
<pre><span style="color: #003366;">$pos = starSprite($rating);</span></pre>
<pre><span style="color: #003366;">$('#small_stars').css('background-position', "0px " + $pos );</span></pre>
<pre><span style="color: #003366;">$('#rating_btns').hide();</span></pre>
<pre><span style="color: #003366;">$('#rating_on').hide();</span></pre>
<pre><span style="color: #003366;">$('#rated').fadeIn();</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">//edit</span></pre>
<pre><span style="color: #003366;">$('#rate_edit').click(function(){</span></pre>
<pre><span style="color: #003366;">$('#rated').hide();</span></pre>
<pre><span style="color: #003366;">$('#rating_btns').fadeIn();</span></pre>
<pre><span style="color: #003366;">$('#rating_on').fadeIn();</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">function rateWidth($rating){</span></pre>
<pre><span style="color: #003366;">$rating = parseFloat($rating);</span></pre>
<pre><span style="color: #003366;">switch ($rating){</span></pre>
<pre><span style="color: #003366;">case 0.5: $width = "14px"; break;</span></pre>
<pre><span style="color: #003366;">case 1.0: $width = "28px"; break;</span></pre>
<pre><span style="color: #003366;">case 1.5: $width = "42px"; break;</span></pre>
<pre><span style="color: #003366;">case 2.0: $width = "56px"; break;</span></pre>
<pre><span style="color: #003366;">case 2.5: $width = "70px"; break;</span></pre>
<pre><span style="color: #003366;">case 3.0: $width = "84px"; break;</span></pre>
<pre><span style="color: #003366;">case 3.5: $width = "98px"; break;</span></pre>
<pre><span style="color: #003366;">case 4.0: $width = "112px"; break;</span></pre>
<pre><span style="color: #003366;">case 4.5: $width = "126px"; break;</span></pre>
<pre><span style="color: #003366;">case 5.0: $width = "140px"; break;</span></pre>
<pre><span style="color: #003366;">default: $width = "84px";</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">return $width;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">function starSprite($rating){</span></pre>
<pre><span style="color: #003366;">$rating = parseFloat($rating);</span></pre>
<pre><span style="color: #003366;">switch ($rating){</span></pre>
<pre><span style="color: #003366;">case 0.5: $pos = "-11px"; break;</span></pre>
<pre><span style="color: #003366;">case 1.0: $pos = "-22px"; break;</span></pre>
<pre><span style="color: #003366;">case 1.5: $pos = "-33px"; break;</span></pre>
<pre><span style="color: #003366;">case 2.0: $pos = "-44px"; break;</span></pre>
<pre><span style="color: #003366;">case 2.5: $pos = "-55px"; break;</span></pre>
<pre><span style="color: #003366;">case 3.0: $pos = "-66px"; break;</span></pre>
<pre><span style="color: #003366;">case 3.5: $pos = "-77px"; break;</span></pre>
<pre><span style="color: #003366;">case 4.0: $pos = "-88px"; break;</span></pre>
<pre><span style="color: #003366;">case 4.5: $pos = "-99px"; break;</span></pre>
<pre><span style="color: #003366;">case 5.0: $pos = "-110px"; break;</span></pre>
<pre><span style="color: #003366;">default: $pos = "-77px";</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">return $pos;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre>
</pre>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery rating">jquery rating</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="5 star vote jquery">5 star vote jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="rating jquery">rating jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery stars background">jquery stars background</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery star rating">jquery star rating</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery ratings">jquery ratings</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery rating tool">jquery rating tool</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery rating system with comments">jquery rating system with comments</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery rating system">jquery rating system</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/" title="jquery rating script">jquery rating script</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/create-a-jquery-star-comment-rating-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Creative And Uniquely Designed Navigation Menus</title>
		<link>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/</link>
		<comments>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:47:48 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24675</guid>
		<description><![CDATA[A well-designed navigation bar leaves a good impression on first-time visitors. Here’s a list of navigation menu designs that would make you go “why didn’t I think of that?” Small Stone Recordings – Here&#8217;s a perfect example of incorporating your site&#8217;s theme with the design. This immediately gives your site’s visitors an idea of what [...]]]></description>
			<content:encoded><![CDATA[<p>A well-designed navigation bar leaves a good impression on first-time visitors. Here’s a list of navigation menu designs that would make you go “why didn’t I think of that?”</p>
<p><a href="http://www.smallstone.com/"><strong> </strong></a></p>
<p><img class="aligncenter size-medium wp-image-24676" title="Small Stone Recordings " src="http://blogfreakz.com/wp-content/uploads/2012/01/126-285x175.jpg" alt="126 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.smallstone.com/"><strong>Small Stone Recordings</strong></a> – Here&#8217;s a perfect example of incorporating your site&#8217;s theme with the   design. This immediately gives your site’s visitors an idea of what  your  site and business is all about.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24677" title="Loodo" src="http://blogfreakz.com/wp-content/uploads/2012/01/216-285x121.jpg" alt="216 285x121 10 Creative And Uniquely Designed Navigation Menus" width="285" height="121" /></p>
<p><a href="http://www.loodo.com.br/"><strong>Loodo</strong></a> – Now here’s a design that would appeal to anyone who enjoys playing traditional board games.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24678" title="Fantasy Cartography" src="http://blogfreakz.com/wp-content/uploads/2012/01/311-285x175.jpg" alt="311 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.fantasy-cartography.com/"><strong>Fantasy Cartography</strong></a> – Talk about creating a site map! Here’s a very original approach in navigation menu design by Robin C. Kuprella. The areas of the site are linked directly on the home page map. Clicking on a link will change the content in the central content box.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24679" title="Gene's Sausage Shop" src="http://blogfreakz.com/wp-content/uploads/2012/01/412-195x175.jpg" alt="412 195x175 10 Creative And Uniquely Designed Navigation Menus" width="195" height="175" /></p>
<p><a href="http://www.genessausageshop.com/"><strong>Genes Sausage Shop</strong></a> – Here’s another good example of incorporating the site’s theme into the navigation menu design.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24680" title="NickAd2007" src="http://blogfreakz.com/wp-content/uploads/2012/01/511-285x175.jpg" alt="511 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.nickad.com/"><strong>NickAd</strong></a> – This one may seem against every design principle of an effective navigation menu but it gets points for creativity and innovation. As one review site puts it, it’s “probably not the most practical menu available but certainly one of the coolest.” I agree; a first-time visitor may be caught off-guard by the seemingly unintuitive design but trust me, it will wow you.</p>
<p><img class="aligncenter size-medium wp-image-24681" title="CL Designs" src="http://blogfreakz.com/wp-content/uploads/2012/01/65-285x175.jpg" alt="65 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.cldesignz.com/"><strong>CL Designz</strong></a> – The main navigation menu at the top of the page may not look like much but you will surely love and appreciate its secondary menu located on the right side. It is unique, fun and definitely practical.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24682" title="Manic" src="http://blogfreakz.com/wp-content/uploads/2012/01/74-177x175.jpg" alt="74 177x175 10 Creative And Uniquely Designed Navigation Menus" width="177" height="175" /></p>
<p><a href="http://wearemanic.com/"><strong>Manic Design</strong></a> – This one’s definitely one of my favorites on this list. It is nicely positioned on the left and all of the options are always visible, animated, and best of all, responsive!</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24684" title="C&amp;C Coffee" src="http://blogfreakz.com/wp-content/uploads/2012/01/83-285x175.jpg" alt="83 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://candccoffee.com/"><strong>C &amp; C Coffee</strong></a> – There’s just something visually pleasing and amusing about its fun Flash-based menu as it playfully dangles links from the top of the page.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24685" title="Alexarts" src="http://blogfreakz.com/wp-content/uploads/2012/01/94-285x175.jpg" alt="94 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.alexarts.ru/en/index.html"><strong>Alexarts</strong></a> – True to its nature, this graphic arts site uses menu items that appeal to modern aesthetics that are also fun to interact with.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24686" title="Tennessee Trains &amp; Highways" src="http://blogfreakz.com/wp-content/uploads/2012/01/103-285x175.jpg" alt="103 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.tntrailsandbyways.com/"><strong>Tennessee Trains &amp; Byways</strong></a> – Don’t let the discreet menu at the top of the page fool you &#8212; Tennessee Trains &amp; Byways is in contention for the largest dropdown menu in the world. It manages to combine old-world elements with modern design, resulting in a charming and highly interactive menu and page layout.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/" title="creative navigation bar">creative navigation bar</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

