<?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; CSS3</title>
	<atom:link href="http://blogfreakz.com/tag/css3/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>Create a Heart Shape With Pure CSS3</title>
		<link>http://blogfreakz.com/tutorial/create-a-heart-shape-with-pure-css3/</link>
		<comments>http://blogfreakz.com/tutorial/create-a-heart-shape-with-pure-css3/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 05:40:03 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[heart]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Valentine's day]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25062</guid>
		<description><![CDATA[For celebrating Valentine&#8217;s Day, this is a great tutorial from Web Froze where you get to use pure CSS3 to create a nice heart shape for your web design graphics. Below are the following codes to achieve this. CSS .heart-shape { position: relative; width: 100px; height: 90px; margin:10px 0px; } .heart-shape:before, .heart-shape:after { position: absolute; [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>For celebrating Valentine&#8217;s Day, this is a great tutorial from <a href="http://www.webfroze.com" target="_blank"><strong>Web Froze </strong></a> where you get to use pure CSS3 to create a nice heart shape for your web design graphics. Below are the following codes to achieve this.</p>
<p><strong>CSS</strong></p>
<pre><span style="color: #003366;">.heart-shape {</span></pre>
<pre><span style="color: #003366;">position: relative;</span></pre>
<pre><span style="color: #003366;">width: 100px;</span></pre>
<pre><span style="color: #003366;">height: 90px;</span></pre>
<pre><span style="color: #003366;">margin:10px 0px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.heart-shape:before,</span></pre>
<pre><span style="color: #003366;">.heart-shape:after {</span></pre>
<pre><span style="color: #003366;">position: absolute;</span></pre>
<pre><span style="color: #003366;">content: "";</span></pre>
<pre><span style="color: #003366;">left: 50px;</span></pre>
<pre><span style="color: #003366;">top: 0;</span></pre>
<pre><span style="color: #003366;">width: 50px;</span></pre>
<pre><span style="color: #003366;">height: 80px;</span></pre>
<pre><span style="color: #003366;">background: #fd2d8a;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 50px 50px 0 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 50px 50px 0 0;</span></pre>
<pre><span style="color: #003366;">-webkit-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-moz-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-ms-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-o-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-webkit-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">-moz-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">-ms-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">-o-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.heart-shape:after {</span></pre>
<pre><span style="color: #003366;">left: 0;</span></pre>
<pre><span style="color: #003366;">-webkit-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-moz-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-ms-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-o-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-webkit-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">-moz-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">-ms-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">-o-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">transform-origin :100% 100%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<p><strong> </strong></p>
<p><strong>HTML</strong></p>
<pre>
<pre><span style="color: #003366;">&lt;div class ="heart shape"&gt;&lt;/div&gt;</span></pre>
<p><strong> </strong></pre>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-a-heart-shape-with-pure-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated CSS3 Multilevel Menu with Transition</title>
		<link>http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/</link>
		<comments>http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 08:06:45 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24660</guid>
		<description><![CDATA[Script-tutorials.com gives us this cool UL-LI-based multilevel menu, with transition and animation effect using CSS3. You can create this menu in 2 easy steps. Click on the above image to view the demo. You may also download the full pack HERE. Step 1: HTML Index.html &#60;!DOCTYPE html&#62; &#60;html lang="en" &#62; &#60;head&#62; &#60;meta charset="utf-8" /&#62; &#60;title&#62;CSS3 [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.script-tutorials.com" target="_blank">Script-tutorials.com</a></strong> gives us this cool UL-LI-based multilevel menu, with transition and animation effect using CSS3. You can create this menu in 2 easy steps.</p>
<p><a href="http://www.script-tutorials.com/demos/211/index.html" target="_blank"><img class="aligncenter size-medium wp-image-24661" title="CSS Multilevel Menu" src="http://blogfreakz.com/wp-content/uploads/2012/01/125-285x175.jpg" alt="125 285x175 Animated CSS3 Multilevel Menu with Transition " width="285" height="175" /></a></p>
<p style="text-align: center;">Click on the above image to view the demo.</p>
<p>You may also download the full pack <a href="http://www.script-tutorials.com/demos/211/source.zip   " target="_blank"><strong>HERE.</strong></a><a href="http://www.script-tutorials.com/demos/211/source.zip"></a><br />
<strong>Step 1: HTML</strong></p>
<p><strong>Index.html</strong></p>
<pre><span style="color: #003366;">&lt;!DOCTYPE html&gt;</span></pre>
<pre><span style="color: #003366;">&lt;html lang="en" &gt;</span></pre>
<pre><span style="color: #003366;">&lt;head&gt;</span></pre>
<pre><span style="color: #003366;">&lt;meta charset="utf-8" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;title&gt;CSS3 multilevel menu with transition and animation | Script Tutorials&lt;/title&gt;</span></pre>
<pre><span style="color: #003366;">&lt;link href="css/layout.css" type="text/css" rel="stylesheet"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;link href="css/menu.css" type="text/css" rel="stylesheet"&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;header&gt;</span></pre>
<pre><span style="color: #003366;">&lt;h2&gt;CSS3 multilevel menu with transition and animation&lt;/h2&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="http://www.script-tutorials.com/css3-multilevel-menu-with-transition-and-animation/" class="stuts"&gt;Back to original tutorial on &lt;span&gt;Script Tutorials&lt;/span&gt;&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/header&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;ul id="nav"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #1&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #11&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #12&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #13&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #14&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #2&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #21&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #22&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #23&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #24&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #3&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #31&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #32&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #33&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #34&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Parent link #4&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #41&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #42&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #43&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"&gt;Sub #44&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&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;/body&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/html&gt;</span></pre>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>Step 2: CSS</strong></p>
<p><strong>Css/menu.css</strong></p>
<pre><span style="color: #003366;">ul#nav {</span>
<span style="color: #003366;">    border: 1px solid #454545;</span>
<span style="color: #003366;">    display: block;</span>
<span style="color: #003366;">    height: 400px;</span>
<span style="color: #003366;">    margin: 0;</span>
<span style="color: #003366;">    padding: 15px;</span>
<span style="color: #003366;">    width: 160px;</span>

<span style="color: #003366;">    -moz-border-radius: 9px;</span>
<span style="color: #003366;">    -ms-border-radius: 9px;</span>
<span style="color: #003366;">    -webkit-border-radius: 9px;</span>
<span style="color: #003366;">    -o-border-radius: 9px;</span>
<span style="color: #003366;">    border-radius: 9px;</span>

<span style="color: #003366;">    background: -moz-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    background: -ms-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f1f7ff), color-stop(100%, #d9e1ec));</span>
<span style="color: #003366;">    background: -webkit-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    background: -o-linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f7ff', endColorstr='#d9e1ec');</span>
<span style="color: #003366;">    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f7ff', endColorstr='#d9e1ec')";</span>
<span style="color: #003366;">    background: linear-gradient(#f1f7ff, #d9e1ec);</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">@-moz-keyframes custom_effect {</span>
<span style="color: #003366;">    0% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 60px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    33% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 160px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    66% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 1.0);</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    100% {</span>
<span style="color: #003366;">        background:rgba(190, 220, 255, 0.8);</span>
<span style="color: #003366;">        height: 135px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">@-webkit-keyframes custom_effect {</span>
<span style="color: #003366;">    0% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 60px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    33% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 0.0);</span>
<span style="color: #003366;">        height: 160px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    66% {</span>
<span style="color: #003366;">        background:rgba(255, 255, 255, 1.0);</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">    100% {</span>
<span style="color: #003366;">        background:rgba(190, 220, 255, 0.8);</span>
<span style="color: #003366;">        height: 135px;</span>
<span style="color: #003366;">    }</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">ul#nav li {</span>
<span style="color: #003366;">    -moz-border-radius: 9px;</span>
<span style="color: #003366;">    -ms-border-radius: 9px;</span>
<span style="color: #003366;">    -webkit-border-radius: 9px;</span>
<span style="color: #003366;">    -o-border-radius: 9px;</span>
<span style="color: #003366;">    border-radius: 9px;</span>

<span style="color: #003366;">    background-color:transparent;</span>
<span style="color: #003366;">    border: 1px solid #454545;</span>
<span style="color: #003366;">    display: block;</span>
<span style="color: #003366;">    height: 60px;</span>
<span style="color: #003366;">    line-height: 60px;</span>
<span style="color: #003366;">    margin-bottom: 15px;</span>
<span style="color: #003366;">    overflow: hidden;</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">ul#nav li:hover {</span>
<span style="color: #003366;">    -moz-animation-name: custom_effect;</span>
<span style="color: #003366;">    -moz-animation-duration: 0.4s;</span>
<span style="color: #003366;">    -moz-animation-timing-function: ease;</span>
<span style="color: #003366;">    -moz-animation-iteration-count: 1;</span>
<span style="color: #003366;">    -moz-animation-direction: normal;</span>
<span style="color: #003366;">    -moz-animation-delay: 0;</span>
<span style="color: #003366;">    -moz-animation-play-state: running;</span>
<span style="color: #003366;">    -moz-animation-fill-mode: forwards;</span>

<span style="color: #003366;">    -webkit-animation-name: custom_effect;</span>
<span style="color: #003366;">    -webkit-animation-duration: 0.4s;</span>
<span style="color: #003366;">    -webkit-animation-timing-function: ease;</span>
<span style="color: #003366;">    -webkit-animation-iteration-count: 1;</span>
<span style="color: #003366;">    -webkit-animation-direction: normal;</span>
<span style="color: #003366;">    -webkit-animation-delay: 0;</span>
<span style="color: #003366;">    -webkit-animation-play-state: running;</span>
<span style="color: #003366;">    -webkit-animation-fill-mode: forwards;</span>

<span style="color: #003366;">    background:rgba(190, 220, 255, 0.8);</span>
<span style="color: #003366;">    height: 135px;</span>
<span style="color: #003366;">}</span>
<span style="color: #003366;">ul#nav a {</span>
<span style="color: #003366;">    border-style: none;</span>
<span style="color: #003366;">    border-width: 0;</span>
<span style="color: #003366;">    color: #181818;</span>
<span style="color: #003366;">    cursor: pointer;</span>
<span style="color: #003366;">    float: left;</span>
<span style="color: #003366;">    font-size: 13px;</span>
<span style="color: #003366;">    font-weight: bold;</span>
<span style="color: #003366;">    line-height: 30px;</span>
<span style="color: #003366;">    margin-top: 100px;</span>
<span style="color: #003366;">    padding-left: 18px;</span>
<span style="color: #003366;">    text-align: left;</span>
<span style="color: #003366;">    text-decoration: none;</span>
<span style="color: #003366;">    text-shadow: 0 1px 1px #FFFFFF;</span>
<span style="color: #003366;">    vertical-align: middle;</span>

<span style="color: #003366;">    -moz-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    -ms-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    -o-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    -webkit-transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">    transition: all 0.1s 0.4s;</span>
<span style="color: #003366;">}</span></pre>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/" title="css text animation">css text animation</a></li>
<li><a href="http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/" title="css3 menus">css3 menus</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/animated-css3-multilevel-menu-with-transition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Fancy Progress Bar With CSS3 And jQuery</title>
		<link>http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/</link>
		<comments>http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 14:53:02 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Ivan Vanderbyl]]></category>
		<category><![CDATA[progress bar]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24354</guid>
		<description><![CDATA[Ivan Vanderbyl &#8216;s cool CSS3 tutorial actually shows us a numeric representation (i.e. percentage) of how long a process is going to take in modern browsers. Below is a screenshot of the resulting product, which you can click on to view the demo. Now let’s start with the HTML. HTML Markup &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://github.com/ivanvanderbyl"><strong>Ivan Vanderbyl<strong> </strong></strong></a>&#8216;s cool CSS3 tutorial actually shows us a numeric representation (i.e. percentage) of how long a process is going to take in modern browsers. Below is a screenshot of the resulting product, which you can click on to view the demo.</p>
<p><strong><strong> </strong></strong></p>
<p><strong><strong><a href="http://skunkworks.ivanvanderbyl.com/"><img class="aligncenter size-medium wp-image-24355" title="CSS3 progress Bar" src="http://blogfreakz.com/wp-content/uploads/2012/01/26-285x175.jpg" alt="26 285x175 How to Make a Fancy Progress Bar With CSS3 And jQuery" width="285" height="175" /></a></strong></strong></p>
<p><strong><strong> </strong></strong></p>
<p>Now let’s start with the HTML.</p>
<p><strong><strong> </strong></strong></p>
<p><strong><strong><strong>HTML Markup</strong></strong></strong></p>
<p><strong><strong> </strong></strong></p>
<p><span style="color: #000080;">&lt;!DOCTYPE html&gt;</span></p>
<p><span style="color: #000080;">&lt;html&gt;</span></p>
<p><span style="color: #000080;">&lt;head&gt;</span></p>
<p><span style="color: #000080;">&lt;meta charset=&#8221;utf-8&#8243;&gt;</span></p>
<p><span style="color: #000080;">&lt;title&gt;Pure CSS Progress Bar&lt;/title&gt;</span></p>
<p><span style="color: #000080;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;stylesheets/ui.css&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;stylesheets/ui.progress-bar.css&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;/head&gt;</span></p>
<p><span style="color: #000080;">&lt;body&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;container&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;progress_bar&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;div style=&#8221;width: 79%;&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;span class=&#8221;ui-label&#8221; style=&#8221;display:none;&#8221;&gt;Processing &lt;b class=&#8221;value&#8221;&gt;79%&lt;/b&gt;&lt;/span&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;&lt;!&#8211; .ui-progress &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;&lt;!&#8211; #progress_bar &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;div class=&#8221;content&#8221; id=&#8221;main_content&#8221; style=&#8221;display: none;&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;p&gt;Hello, World!&lt;/p&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;&lt;!&#8211; #main_content &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;&lt;!&#8211; #container &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/body&gt;</span></p>
<p><span style="color: #000080;"> &lt;/html&gt;</span></p>
<p>Our CSS starts off with the basic styles for the layout, followed by some real serious stuff starting with @-webkit-keyframes animate-stripes {, which deals with the progress bar itself.<strong> </strong></p>
<p><strong>CSS3 Markup</strong></p>
<p><span style="color: #000080;">body {</span></p>
<p><span style="color: #000080;">background:#eee;</span></p>
<p><span style="color: #000080;">padding: 30px;</span></p>
<p><span style="color: #000080;">font-size: 62.5%;</span></p>
<p><span style="color: #000080;">font-family: &#8216;Helvetica Neue&#8217;, Helvetica, Arial, sans-serif;</span></p>
<p><span style="color: #000080;">position: relative;</span></p>
<p><span style="color: #000080;">margin: 0;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">#container {</span></p>
<p><span style="color: #000080;">margin: 0 auto;</span></p>
<p><span style="color: #000080;">width: 460px;</span></p>
<p><span style="color: #000080;">padding: 2em;</span></p>
<p><span style="color: #000080;">background: #DCDDDF;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">.ui-progress-bar {</span></p>
<p><span style="color: #000080;">margin-top: 3em;</span></p>
<p><span style="color: #000080;">margin-bottom: 3em;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">.ui-progress span.ui-label {</span></p>
<p><span style="color: #000080;">font-size: 1.2em;</span></p>
<p><span style="color: #000080;">position: absolute;</span></p>
<p><span style="color: #000080;">right: 0;</span></p>
<p><span style="color: #000080;">line-height: 33px;</span></p>
<p><span style="color: #000080;">padding-right: 12px;</span></p>
<p><span style="color: #000080;">color: rgba(0,0,0,0.6);</span></p>
<p><span style="color: #000080;">text-shadow: rgba(255,255,255, 0.45) 0 1px 0px;</span></p>
<p><span style="color: #000080;">white-space: nowrap;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;"><strong>@-webkit-keyframes animate-stripes {</strong></span></p>
<p><span style="color: #000080;">from {</span></p>
<p><span style="color: #000080;">background-position: 0 0;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">to {</span></p>
<p><span style="color: #000080;">background-position: 44px 0;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">.ui-progress-bar {</span></p>
<p><span style="color: #000080;">position: relative;</span></p>
<p><span style="color: #000080;">height: 35px;</span></p>
<p><span style="color: #000080;">padding-right: 2px;</span></p>
<p><span style="color: #000080;">background-color: #abb2bc;</span></p>
<p><span style="color: #000080;">border-radius: 35px;</span></p>
<p><span style="color: #000080;">-moz-border-radius: 35px;</span></p>
<p><span style="color: #000080;">-webkit-border-radius: 35px;</span></p>
<p><span style="color: #000080;">background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #b6bcc6), color-stop(1, #9da5b0));</span></p>
<p><span style="color: #000080;">background: -moz-linear-gradient(#9da5b0 0%, #b6bcc6 100%);</span></p>
<p><span style="color: #000080;">-webkit-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px #FFF;</span></p>
<p><span style="color: #000080;">-moz-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px #FFF;</span></p>
<p><span style="color: #000080;">box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px #FFF;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">.ui-progress {</span></p>
<p><span style="color: #000080;">position: relative;</span></p>
<p><span style="color: #000080;">display: block;</span></p>
<p><span style="color: #000080;">overflow: hidden;</span></p>
<p><span style="color: #000080;">height: 33px;</span></p>
<p><span style="color: #000080;">-moz-border-radius: 35px;</span></p>
<p><span style="color: #000080;">-webkit-border-radius: 35px;</span></p>
<p><span style="color: #000080;">border-radius: 35px;</span></p>
<p><span style="color: #000080;">-webkit-background-size: 44px 44px;</span></p>
<p><span style="color: #000080;">background-color: #74d04c;</span></p>
<p><span style="color: #000080;">background: -webkit-gradient(linear, 0 0, 44 44,</span></p>
<p><span style="color: #000080;">color-stop(0.00, rgba(255,255,255,0.17)),</span></p>
<p><span style="color: #000080;">color-stop(0.25, rgba(255,255,255,0.17)),</span></p>
<p><span style="color: #000080;">color-stop(0.26, rgba(255,255,255,0)),</span></p>
<p><span style="color: #000080;">color-stop(0.50, rgba(255,255,255,0)),</span></p>
<p><span style="color: #000080;">color-stop(0.51, rgba(255,255,255,0.17)),</span></p>
<p><span style="color: #000080;">color-stop(0.75, rgba(255,255,255,0.17)),</span></p>
<p><span style="color: #000080;">color-stop(0.76, rgba(255,255,255,0)),</span></p>
<p><span style="color: #000080;">color-stop(1.00, rgba(255,255,255,0))</span></p>
<p><span style="color: #000080;">), -webkit-gradient(linear, left bottom, left top, color-stop(0, #74d04c), color-stop(1, #9bdd62));</span></p>
<p><span style="color: #000080;">background: -moz-repeating-linear-gradient(top left -30deg,</span></p>
<p><span style="color: #000080;">rgba(255,255,255,0.17),</span></p>
<p><span style="color: #000080;">rgba(255,255,255,0.17) 15px,</span></p>
<p><span style="color: #000080;">rgba(255,255,255,0) 15px,</span></p>
<p><span style="color: #000080;">rgba(255,255,255,0) 30px</span></p>
<p><span style="color: #000080;">), -moz-linear-gradient(#9bdd62 0%, #74d04c 100%);</span></p>
<p><span style="color: #000080;">-webkit-box-shadow: inset 0px 1px 0px 0px #dbf383, inset 0px -1px 1px #58c43a;</span></p>
<p><span style="color: #000080;">-moz-box-shadow: inset 0px 1px 0px 0px #dbf383, inset 0px -1px 1px #58c43a;</span></p>
<p><span style="color: #000080;">box-shadow: inset 0px 1px 0px 0px #dbf383, inset 0px -1px 1px #58c43a;</span></p>
<p><span style="color: #000080;">border: 1px solid #4c8932;</span></p>
<p><span style="color: #000080;">-webkit-animation: animate-stripes 2s linear infinite;</span></p>
<p><span style="color: #000080;"> }</span></p>
<p><strong><strong> </strong></strong></p>
<p><strong><strong><br />
</strong>jQuery</strong></p>
<p>Now that we’ve taken care of how the progress bar will look, it’s time for jQuery to do its magic by adding the animation. This is going to involve two steps;</p>
<p><strong>Step 1:</strong> Paste this short code just before the closing body &lt;/body&gt; tag  of your html file.</p>
<p><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML /> <o:AllowPNG /> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --> <!--[endif] --></p>
<p class="MsoNormal"><span style="color: #000080;">&lt;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&#8221; type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&gt;&lt;/script&gt;</span></p>
<p><span style="font-size: 11pt; line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: #000080;"> &lt;script src=&#8221;progress.js&#8221; type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&gt;&lt;/script&gt;</span></p>
<p><strong><strong> </strong></strong></p>
<p><strong>Step 2: </strong>Create a JavaScript (.js) file and paste this code in it.<br />
<span style="color: #000080;">(function( $ ){</span><br />
<span style="color: #000080;"> $.fn.animateProgress = function(progress, callback) {</span><br />
<span style="color: #000080;"> return this.each(function() {</span><br />
<span style="color: #000080;"> $(this).animate({</span><br />
<span style="color: #000080;"> width: progress+&#8217;%&#8217;</span><br />
<span style="color: #000080;"> }, {</span><br />
<span style="color: #000080;"> duration: 2000, </span></p>
<p><span style="color: #000080;"> easing: &#8216;swing&#8217;,</span></p>
<p><span style="color: #000080;"> step: function( progress ){</span><br />
<span style="color: #000080;"> var labelEl = $(&#8216;.ui-label&#8217;, this),</span><br />
<span style="color: #000080;"> valueEl = $(&#8216;.value&#8217;, labelEl);</span></p>
<p><span style="color: #000080;"> if (Math.ceil(progress) &lt; 20 &amp;&amp; $(&#8216;.ui-label&#8217;, this).is(&#8220;:visible&#8221;)) {</span><br />
<span style="color: #000080;"> labelEl.hide();</span><br />
<span style="color: #000080;"> }else{</span><br />
<span style="color: #000080;"> if (labelEl.is(&#8220;:hidden&#8221;)) {</span><br />
<span style="color: #000080;"> labelEl.fadeIn();</span><br />
<span style="color: #000080;"> };</span><br />
<span style="color: #000080;"> }</span></p>
<p><span style="color: #000080;"> if (Math.ceil(progress) == 100) {</span><br />
<span style="color: #000080;"> labelEl.text(&#8216;Done&#8217;);</span><br />
<span style="color: #000080;"> setTimeout(function() {</span><br />
<span style="color: #000080;"> labelEl.fadeOut();</span><br />
<span style="color: #000080;"> }, 1000);</span><br />
<span style="color: #000080;"> }else{</span><br />
<span style="color: #000080;"> valueEl.text(Math.ceil(progress) + &#8216;%&#8217;);</span><br />
<span style="color: #000080;"> }</span><br />
<span style="color: #000080;"> },</span><br />
<span style="color: #000080;"> complete: function(scope, i, elem) {</span><br />
<span style="color: #000080;"> if (callback) {</span><br />
<span style="color: #000080;"> callback.call(this, i, elem );</span><br />
<span style="color: #000080;"> };</span><br />
<span style="color: #000080;"> }</span><br />
<span style="color: #000080;"> });</span><br />
<span style="color: #000080;"> });</span><br />
<span style="color: #000080;"> };</span><br />
<span style="color: #000080;"> })( jQuery );</span></p>
<p><span style="color: #000080;">$(function() {</span><br />
<span style="color: #000080;"> $(&#8216;#progress_bar .ui-progress .ui-label&#8217;).hide();</span><br />
<span style="color: #000080;"> $(&#8216;#progress_bar .ui-progress&#8217;).css(&#8216;width&#8217;, &#8217;7%&#8217;);</span></p>
<p><span style="color: #000080;"> $(&#8216;#progress_bar .ui-progress&#8217;).animateProgress(43, function() {</span><br />
<span style="color: #000080;"> $(this).animateProgress(79, function() {</span><br />
<span style="color: #000080;"> setTimeout(function() {</span><br />
<span style="color: #000080;"> $(&#8216;#progress_bar .ui-progress&#8217;).animateProgress(100, function() {</span><br />
<span style="color: #000080;"> $(&#8216;#main_content&#8217;).slideDown();</span><br />
<span style="color: #000080;"> });</span><br />
<span style="color: #000080;"> }, 2000);</span><br />
<span style="color: #000080;"> });</span><br />
<span style="color: #000080;"> });</span></p>
<p><span style="color: #000080;">});</span></p>
<p>Save your .js file and then try to open your HTML file to see how you did. Once the progress bar reaches 100%, a small “Hello World” greeting will appear.</p>
<p>Hope you enjoy doing this tutorial, but more importantly, I hope that you’ll have fun incorporating this in to your website.</p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 3645px; width: 1px; height: 1px; overflow: hidden;"><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML /> <o:AllowPNG /> </o:OfficeDocumentSettings> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} table.MsoTableGrid 	{mso-style-name:"Table Grid"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-priority:59; 	mso-style-unhide:no; 	border:solid windowtext 1.0pt; 	mso-border-alt:solid windowtext .5pt; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-border-insideh:.5pt solid windowtext; 	mso-border-insidev:.5pt solid windowtext; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --> <!--[endif] -->&nbsp;</p>
<p class="MsoNormal">&nbsp;</p>
<table class="MsoTableGrid" style="border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes; height: 31.0pt;">
<td style="width: 6.65in; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; height: 31.0pt;" width="638" valign="top">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;">&lt;script   src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&#8221;   type=&#8221;text/javascript&#8221; charset=&#8221;utf-8&#8243;&gt;&lt;/script&gt;</p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;">&lt;script src=&#8221;progress.js&#8221; type=&#8221;text/javascript&#8221;   charset=&#8221;utf-8&#8243;&gt;&lt;/script&gt;</p>
</td>
</tr>
</tbody>
</table>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="progress bar jquery">progress bar jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="프로그래스바">프로그래스바</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="progress-bar-stripes 2s linear infinite">progress-bar-stripes 2s linear infinite</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="jquery progressbar">jquery progressbar</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="jquery progress bar 2012">jquery progress bar 2012</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="jquery animated progress bar">jquery animated progress bar</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="javascript progress bar">javascript progress bar</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="html progress bar image">html progress bar image</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="fancy loading bars jquery">fancy loading bars jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/" title="html css progress bar animated webkit">html css progress bar animated webkit</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/how-to-make-a-fancy-progress-bar-with-css3-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create a Cool CSS3 Music Player</title>
		<link>http://blogfreakz.com/web-design/create-cool-css3-music-player/</link>
		<comments>http://blogfreakz.com/web-design/create-cool-css3-music-player/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 14:09:09 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[music player]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24344</guid>
		<description><![CDATA[No music, no life. And as far as web design is concerned, this awesome CSS3 music player would be perfect for adding a new dimension to your blog or website. Indonesian artist Hidayat Sagita made this tutorial in which the goal is to use CSS3 instead of images, so CSS3 properties replace the following Photoshop [...]]]></description>
			<content:encoded><![CDATA[<p align="left">No music, no life. And as far as web design is concerned, this awesome CSS3 music player would be perfect for adding a new dimension to your blog or website.</p>
<p align="left">Indonesian artist Hidayat Sagita made this <a href="http://www.webstuffshare.com/2010/05/css3-music-player-menu/"><strong>tutorial</strong></a> in which the goal is to use CSS3 instead of images, so CSS3 properties replace the following <a href="http://blogfreakz.com/category/photoshop-tutorial/"><strong>Photoshop</strong></a> techniques:</p>
<p align="left">1.	-webkit-gradient or –moz-linear-gradient property is used for color gradient<br />
2.	Border property for stroke.<br />
3.	–webkit-box-shadow, -moz-box-shadow or box shadow property for drop shadow<br />
4.	–webkit-border-radius, -moz-border-radius, border-radius for rounded corner<br />
5.	For a smooth bevel, the border property is used on one side or more with thickness of 1 pixel<br />
6.	Stacked layer for layer masking</p>
<p><a href="http://webstuffshare.com/demo/CSSMusicPlayer/"><strong>Demo</strong></a><br />
<a href="http://www.webstuffshare.com/2010/05/css3-music-player-menu/"><strong>Download</strong></a></p>
<p align="left">Some of this player&#8217;s properties are only supported by few browsers, but it’s so powerful that minimal use of images is required. Also, jazzing up your website with a player like this is totally worth it, so a browser upgrade won’t hurt at all.</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="css3 music">css3 music</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="css3 player">css3 player</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="cool website design">cool website design</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="create a cool music player">create a cool music player</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="create html5 audio player">create html5 audio player</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="how to make a music player for the web">how to make a music player for the web</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="intext:website -intext:you must be logged in and intext:leave a reply -intitle:leave a reply ~musique">intext:website -intext:you must be logged in and intext:leave a reply -intitle:leave a reply ~musique</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="music in css3">music in css3</a></li>
<li><a href="http://blogfreakz.com/web-design/create-cool-css3-music-player/" title="musikplaer coole designs">musikplaer coole designs</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/create-cool-css3-music-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create CSS3 Speech Bubbles</title>
		<link>http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/</link>
		<comments>http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 01:39:59 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[speech bubbles]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24254</guid>
		<description><![CDATA[The use of speech bubbles in web design has become so popular that it has become an integral feature in commenting. This tutorial by Nicolas Gallagher teaches us how to create our own. Many tutorials out there rely on HTML and JavaScript which, aside from being tedious to work on, don’t work well on IE5. [...]]]></description>
			<content:encoded><![CDATA[<p align="left">The use of speech bubbles in <a href="http://blogfreakz.com/category/web-design/"><strong>web design</strong></a> has become so popular that it has become an integral feature in commenting. This tutorial by Nicolas Gallagher teaches us how to create our own.</p>
<p align="left">Many tutorials out there rely on HTML and JavaScript which, aside from being tedious to work on, don’t work well on IE5. Gallagher&#8217;s <a href="http://nicolasgallagher.com/pure-css-speech-bubbles/"><strong>Speech Bubbles</strong></a> contains different forms made with CSS2.1 and enhanced with CSS3 which can be applied to your existing HTML.</p>
<p align="left">This is supported by Firefox 3.5+, Safari 4+, Chrome 4+, Opera 10+, IE8+.</p>
<p><a href="http://nicolasgallagher.com/pure-css-speech-bubbles/demo/"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/15-285x175.jpg" alt="15 285x175 How to Create CSS3 Speech Bubbles" title="Speech bubbles" width="285" height="175" class="aligncenter size-medium wp-image-24256" /></a></p>
<p align="left">Click on the above image to view the demo, or <a href="http://nicolasgallagher.com/pure-css-speech-bubbles/demo/default.css"><strong>click here</strong></a> for a more detailed explanation of its CSS.</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="css3 speech bubble">css3 speech bubble</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="css3 bubble">css3 bubble</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="css3 speech bubbles">css3 speech bubbles</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="css3 speech bubble generator">css3 speech bubble generator</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="speech bubble css3">speech bubble css3</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="speech bubble image generator">speech bubble image generator</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="speech bubble psd">speech bubble psd</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="facebook bubble css3">facebook bubble css3</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="speech bubbles css3">speech bubbles css3</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/" title="speech bubbl css3">speech bubbl css3</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/how-to-create-css3-speech-bubbles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Isometric 3D Text With CSS3</title>
		<link>http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/</link>
		<comments>http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 05:24:38 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24240</guid>
		<description><![CDATA[This neat CSS3 snippet I found makes your text appear in isometric projection. Since it’s in CSS, you can also apply other effects like shadows, 2D transforms, blur, etc. Here’s the snippet of the CSS used to accomplish the sample image above. But if you want to get the full code, you can either click [...]]]></description>
			<content:encoded><![CDATA[<p align="left">This neat <a href="http://blogfreakz.com/category/css3/"><strong>CSS3</strong></a> snippet I found makes your text appear in isometric projection. Since it’s in CSS, you can also apply other effects like shadows, 2D transforms, blur, etc.</p>
<p><a href="http://www.midwinter-dg.com/permalink-css3-isometric-text-demo-2011-03-14.html"><img class="aligncenter size-medium wp-image-24241" title="Isometric Text" src="http://blogfreakz.com/wp-content/uploads/2012/01/14-285x175.jpg" alt="14 285x175 How to Create Isometric 3D Text With CSS3" width="285" height="175" /></a></p>
<p align="left">Here’s the snippet of the CSS used to accomplish the sample image above. But if you want to get the full code, you can either click on the above image or the download link below.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #000080;">&lt;style type=&#8221;text/css&#8221;&gt;</span></p>
<p><span style="color: #000080;">.skew1, .skew3 {</span></p>
<p><span style="color: #000080;">font: 60px/80px Candal;</span></p>
<p><span style="color: #000080;">line-height: 100px;</span></p>
<p><span style="color: #000080;">-webkit-transform:   skewY(-26.6deg);</span></p>
<p><span style="color: #000080;">-moz-transform:   skewY(-26.6deg);</span></p>
<p><span style="color: #000080;">-o-transform:   skewY(-26.6deg);</span></p>
<p><span style="color: #000080;">text-shadow: -1px -1px 0px   #999,</span></p>
<p><span style="color: #000080;">-2px -2px 0px #888,</span></p>
<p><span style="color: #000080;">-3px -3px 0px #777,</span></p>
<p><span style="color: #000080;">-4px -4px 0px #666,</span></p>
<p><span style="color: #000080;">-5px -5px 0px #555,</span></p>
<p><span style="color: #000080;">-5px -5px 0px #444,</span></p>
<p><span style="color: #000080;">-5px -5px 0px #333,</span></p>
<p><span style="color: #000080;">-5px -5px 5px #222;</span></p>
<p><span style="color: #000080;">position: absolute;</span></p>
<p><span style="color: #000080;">z-index: 100;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.skew1 {</span></p>
<p><span style="color: #000080;">top: 100px;</span></p>
<p><span style="color: #000080;">left: 80px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.skew3 {</span></p>
<p><span style="color: #000080;">top: 170px;</span></p>
<p><span style="color: #000080;">left: 240px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.skew2, .skew4 {</span></p>
<p><span style="color: #000080;">color: rgba(0,0,0,0);</span></p>
<p><span style="color: #000080;">font: 60px/80px Candal;</span></p>
<p><span style="color: #000080;">line-height: 100px;</span></p>
<p><span style="color: #000080;">-webkit-transform:   skew(63deg,-26.6deg);</span></p>
<p><span style="color: #000080;">-moz-transform:   skew(63deg,-26.6deg);</span></p>
<p><span style="color: #000080;">-o-transform:   skew(63deg,-26.6deg);</span></p>
<p><span style="color: #000080;">text-shadow: 0 0 4px   rgba(0,0,0,0.3);</span></p>
<p><span style="color: #000080;">position: absolute;</span></p>
<p><span style="color: #000080;">z-index: 50;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.skew2 {</span></p>
<p><span style="color: #000080;">top: 100px;</span></p>
<p><span style="color: #000080;">left: 40px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.skew4 {</span></p>
<p><span style="color: #000080;">top: 170px;</span></p>
<p><span style="color: #000080;">left: 200px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.text-block {</span></p>
<p><span style="color: #000080;">width: 360px;</span></p>
<p><span style="color: #000080;">height: 200px;</span></p>
<p><span style="color: #000080;">position: absolute;</span></p>
<p><span style="color: #000080;">top: 270px;</span></p>
<p><span style="color: #000080;">left: 490px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p>&nbsp;</p>
<p><span style="color: #000080;">.skew5 {</span></p>
<p><span style="color: #000080;">color: rgba(153,153,153,1);</span></p>
<p><span style="color: #000080;">font: 14px/18px Candal;</span></p>
<p><span style="color: #000080;">text-shadow: -2px 1px 2px   #CCCCCC,-3px 1px 2px #DDDDDD;</span></p>
<p><span style="color: #000080;">text-align: center;</span></p>
<p><span style="color: #000080;">-webkit-transform:   skew(63deg,-26.6deg);</span></p>
<p><span style="color: #000080;">-moz-transform:   skew(63deg,-26.6deg);</span></p>
<p><span style="color: #000080;">-o-transform:   skew(63deg,-26.6deg);</span></p>
<p><span style="color: #000080;">position: absolute;</span></p>
<p><span style="color: #000080;">z-index: 50;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">&lt;/style&gt;</span></td>
</tr>
</tbody>
</table>
<p><!-- .skew1, .skew3 { font: 60px/80px Candal; line-height: 100px; -webkit-transform: skewY(-26.6deg); -moz-transform: skewY(-26.6deg); -o-transform: skewY(-26.6deg); text-shadow: -1px -1px 0px #999, -2px -2px 0px #888, -3px -3px 0px #777, -4px -4px 0px #666, -5px -5px 0px #555, -5px -5px 0px #444, -5px -5px 0px #333, -5px -5px 5px #222; position: absolute; z-index: 100; } .skew1 { top: 100px; left: 80px; } .skew3 { top: 170px; left: 240px; } .skew2, .skew4 { color: rgba(0,0,0,0); font: 60px/80px Candal; line-height: 100px; -webkit-transform: skew(63deg,-26.6deg); -moz-transform: skew(63deg,-26.6deg); -o-transform: skew(63deg,-26.6deg); text-shadow: 0 0 4px rgba(0,0,0,0.3); position: absolute; z-index: 50; } .skew2 { top: 100px; left: 40px; } .skew4 { top: 170px; left: 200px; } .text-block { width: 360px; height: 200px; position: absolute; top: 270px; left: 490px; } .skew5 { color: rgba(153,153,153,1); font: 14px/18px Candal; text-shadow: -2px 1px 2px #CCCCCC,-3px 1px 2px #DDDDDD; text-align: center; -webkit-transform: skew(63deg,-26.6deg); -moz-transform: skew(63deg,-26.6deg); -o-transform: skew(63deg,-26.6deg); position: absolute; z-index: 50; } --></p>
<p align="left">Check out the <a href="http://www.midwinter-dg.com/blog_demos/css-isometric-text/"><strong>DEMO</strong></a>. What really impressed me is the part where you can type the text inside the box and you can see the effect as you type! Try it out yourself, or get the <a href="http://www.midwinter-dg.com/downloads/css-isometric-text.zip"><strong>ZIP FILE</strong></a> now. Enjoy!</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="isometric html5 text">isometric html5 text</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="flash text isometric skew">flash text isometric skew</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="<br />
<style type=3dtext/css>"><br />
<style type=3dtext/css></a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="javascript isometric map generator">javascript isometric map generator</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="isometric css3 pixel">isometric css3 pixel</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="isometric 3d transform css3">isometric 3d transform css3</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="html5 texst skew">html5 texst skew</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="how to make a font isometric">how to make a font isometric</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="css3 template isometric">css3 template isometric</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/" title="css3 isometric perspective">css3 isometric perspective</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/how-to-create-isometric-3d-text-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>21 Free HTML5 and CSS3 Corporate &amp; Folio Templates</title>
		<link>http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/</link>
		<comments>http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 05:00:48 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Design News]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24195</guid>
		<description><![CDATA[One of the latest languages in web development that has created a buzz among users is HTML5. Combined with CSS3, it produces web design tools that are innovative, useful, user-friendly, and even fun. I’ve gathered a list of free templates below which use HTML5 and CSS3 supplemented with other features like jQuery. These templates have [...]]]></description>
			<content:encoded><![CDATA[<p align="left">One of the latest languages in web development that has created a buzz among users is <a href="http://blogfreakz.com/category/html5/"><strong>HTML5</strong></a>. Combined with CSS3, it produces web design tools that are innovative, useful, user-friendly, and even fun.</p>
<p align="left">I’ve gathered a list of free templates below which use HTML5 and <a href="http://blogfreakz.com/category/css3/"><strong>CSS3</strong></a> supplemented with other features like jQuery. These templates have clean and sleek designs, perfect for corporate, product, portfolio and service websites. Just click on the names and thumbnails to view their respective sites and demos.</p>
<p align="left"><strong><a href="http://luiszuno.com/blog/downloads/nova-html-template">Nova</a></strong><br />
<a href="http://luiszuno.com/blog/wp-content/uploads/2011/06/preview-620x3001.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/12-200x200.jpg" alt="12 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Nova" width="200" height="200" class="alignnone size-thumbnail wp-image-24196" /></a></p>
<p align="left"><a href="http://tutorialzine.com/2010/02/html5-css3-website-template/"><strong>One-Page Template</strong></a><br />
<a href="http://demo.tutorialzine.com/2010/02/html5-css3-website-template/template.html"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/22-200x200.jpg" alt="22 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="One-Page Template" width="200" height="200" class="alignnone size-thumbnail wp-image-24199" /></a></p>
<p align="left"><a href="http://luiszuno.com/themes/kroft/"><strong>Kroft</strong></a><br />
<a href="http://luiszuno.com/blog/downloads/kroft-template-html"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/3-200x200.jpg" alt="3 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Kroft" width="200" height="200" class="alignnone size-thumbnail wp-image-24201" /></a></p>
<p align="left"><a href="http://www.webdezign.co.uk/design/free-html5-template-3/"><strong>Free HTML5 Template</strong></a><br />
<a href="http://www.webdezign.co.uk/html5-examples/2col-slide/"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/4-200x200.jpg" alt="4 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Free HTML5 Template" width="200" height="200" class="alignnone size-thumbnail wp-image-24203" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/downloads/free/flipthru/"><strong>Flip Thru</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/flipthru/#"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/5-200x200.jpg" alt="5 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Flipthru" width="200" height="200" class="alignnone size-thumbnail wp-image-24208" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/earthday-html5-and-css3-template/"><strong>Earthday</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/earthday-thumbs/earthday-feature-full.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/6-200x200.jpg" alt="6 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Earthday" width="200" height="200" class="alignnone size-thumbnail wp-image-24209" /></a></p>
<p align="left"><a href="http://blog.templatemonster.com/2010/06/29/free-html5-template-design-company/"><strong>HTML5 Template for Design Company Website</strong></a><br />
<a href="http://blog.templatemonster.com/2010/06/29/free-html5-template-design-company/"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/7-200x200.jpg" alt="7 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Design Company Template" width="200" height="200" class="alignnone size-thumbnail wp-image-24211" /></a></p>
<p align="left"><a href="http://luiszuno.com/blog/downloads/shinra-html-template#!prettyPhoto/0/"><strong>Shinra</strong></a><br />
<a href="http://luiszuno.com/blog/wp-content/uploads/2011/06/preview-620x3003.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/8-200x200.jpg" alt="8 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Shinra" width="200" height="200" class="alignnone size-thumbnail wp-image-24212" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/applegreen-html5-and-css3-template/"><strong>Applegreen</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/applegreen-thumbs/applegreen-feature-full.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/9-200x186.jpg" alt="9 200x186 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Applegreen" width="200" height="186" class="alignnone size-thumbnail wp-image-24213" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/blogger5-html5-and-css3-template/"><strong>Blogger5</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/blogger5-thumbs/blogger5-feature-full.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/10-200x156.jpg" alt="10 200x156 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Blogger" width="200" height="156" class="alignnone size-thumbnail wp-image-24220" /></a></p>
<p align="left"><a href="http://www.csstemplatesfree.org/hostingsite.html"><strong>Hosting</strong></a><br />
<a href="http://i53.tinypic.com/67pbo1.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/111-200x200.jpg" alt="111 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Hosting" width="200" height="200" class="alignnone size-thumbnail wp-image-24221" /></a></p>
<p align="left"><a href="http://www.os-templates.com/free-website-templates/darkness"><strong>Darkness</strong></a><br />
<a href="http://www.os-templates.com/website-templates/template-demos/free-website-templates/darkness/thumb.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/13-200x200.jpg" alt="13 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Darkness" width="200" height="200" class="alignnone size-thumbnail wp-image-24222" /></a></p>
<p align="left"><a href="http://sitebee.co.uk/2011/08/hot-html5-free-templates-designed-by-sitebee/"><strong>Webpilot</strong></a><br />
<a href="http://www.html5-templates.co.uk/temps/webpilot/images/webpilot-thumb-sm.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/23-200x200.jpg" alt="23 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Webpilot" width="200" height="200" class="alignnone size-thumbnail wp-image-24223" /></a></p>
<p align="left"><a href="http://www.webdezign.co.uk/design/free-html5-template-3/"><strong>Lorem</strong></a><br />
<a href="http://www.webdezign.co.uk/html5-examples/2col-slide/"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/31-200x200.jpg" alt="31 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Lorem" width="200" height="200" class="alignnone size-thumbnail wp-image-24224" /></a></p>
<p align="left"><a href="http://medialoot.com/item/html5-admin-template/"><strong>HTML5 Admin Template</strong></a><br />
<a href="http://medialoot.com/images/thumbs/640x440_admin-area-template0_2.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/41-200x200.jpg" alt="41 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="HTML5 Admin" width="200" height="200" class="alignnone size-thumbnail wp-image-24225" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/redx-html5-and-css3-template/"><strong>RedX</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/redx-thumbs/redx-feature-full.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/51-200x195.jpg" alt="51 200x195 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="RedX" width="200" height="195" class="alignnone size-thumbnail wp-image-24228" /></a></p>
<p align="left"><a href="http://www.os-templates.com/free-website-templates/ost-magazine"><strong>Ost Magazine</strong></a></p>
<p><a href="http://www.os-templates.com/website-templates/template-demos/free-website-templates/ost-magazine/thumb.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/61-200x200.jpg" alt="61 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Ost Magazine" width="200" height="200" class="alignnone size-thumbnail wp-image-24229" /></a></p>
<p align="left"><a href="http://blog.templatemonster.com/2010/11/15/free-html5-website-template-art-your-business/"><strong>Art of Your Business</strong></a><br />
<a href="http://blog.tmimgcdn.com/wp-content/uploads/2010/11/Free-Website-Template1.jpg?9d7bd4"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/71-200x200.jpg" alt="71 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Art of Your Business" width="200" height="200" class="alignnone size-thumbnail wp-image-24230" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/vividphoto-html5-and-css3-template/"><strong>Vivid Photo</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/vividphoto-thumbs/vividphoto-feature-full.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/91-200x172.jpg" alt="91 200x172 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="VividPhoto" width="200" height="172" class="alignnone size-thumbnail wp-image-24231" /></a></p>
<p align="left"><a href="http://blog.templatemonster.com/2010/12/06/free-communications-html5-website-template/"><strong>Communications</strong></a><br />
<a href="http://blog.tmimgcdn.com/wp-content/uploads/2010/12/Free-Website-Template.jpg?9d7bd4"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/101-200x200.jpg" alt="101 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Communications" width="200" height="200" class="alignnone size-thumbnail wp-image-24232" /></a></p>
<p align="left"><a href="http://freehtml5templates.com/technicalline-html5-and-css3-template/"><strong>Technicalline</strong></a><br />
<a href="http://freehtml5templates.com/downloads/free/technicalline-thumbs/technicalline-feature-full.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/112-200x200.jpg" alt="112 200x200 21 Free HTML5 and CSS3 Corporate & Folio Templates" title="Technicalline" width="200" height="200" class="alignnone size-thumbnail wp-image-24233" /></a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="free html5 template">free html5 template</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="html5 css3 templates">html5 css3 templates</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="how to create html5 featured for wordpress">how to create html5 featured for wordpress</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="modèles sites web css3 html5">modèles sites web css3 html5</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="css3 html5 corporate design">css3 html5 corporate design</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="css3 corporate">css3 corporate</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="html5 css3 web templates">html5 css3 web templates</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="thumbnails html5 free">thumbnails html5 free</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="arena animation web layouts">arena animation web layouts</a></li>
<li><a href="http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/" title="html5 template">html5 template</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/21-free-html5-and-css3-corporate-folio-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create KnobKnob: A Shiny Knob Control with jQuery and CSS3</title>
		<link>http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 12:56:46 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[KnobKnob]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24163</guid>
		<description><![CDATA[This tutorial by Martin Angelov of tutorialzine.com will show you how to create a cool shiny knob control called KnobKnob. Made with jQuery and CSS3, this plugin uses CSS transformations and features jQuery’s new handling method. It will definitely give users a fun and interesying way of interactively selecting a pool of values from a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-24164 aligncenter" title="shiny-switch-rotation" src="http://blogfreakz.com/wp-content/uploads/2012/01/shiny-switch-rotation-285x175.jpg" alt="shiny switch rotation 285x175 How to Create KnobKnob: A Shiny Knob Control with jQuery and CSS3" width="285" height="175" /></p>
<p>This tutorial by Martin Angelov of <strong><a href="http://tutorialzine.com" target="_blank">tutorialzine.com</a></strong> will show you how to create a cool shiny knob control called KnobKnob. Made with jQuery and CSS3, this plugin uses CSS transformations and features jQuery’s new handling method. It will definitely give users a fun and interesying way of interactively selecting a pool of values from a range in your WordPress blog.</p>
<p>See the <strong><a href="http://demo.tutorialzine.com/2011/11/pretty-switches-css3-jquery/" target="_blank">Demo</a></strong> and get the <strong><a href="http://demo.tutorialzine.com/2011/11/pretty-switches-css3-jquery/shiny-knobs.zip" target="_blank">Download</a></strong>.</p>
<p><strong>Step 1: HTML</strong></p>
<p><span style="color: #000080;">&lt;!DOCTYPE html&gt;</span></p>
<p><span style="color: #000080;">&lt;html&gt;</span></p>
<p><span style="color: #000080;">&lt;head&gt;</span></p>
<p><span style="color: #000080;">&lt;meta charset=&#8221;utf-8&#8243; /&gt;</span></p>
<p><span style="color: #000080;">&lt;title&gt;Shiny Switches with CSS3 &amp;amp; jQuery | Tutorialzine Demo&lt;/title&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; CSS stylesheets &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;assets/css/styles.css&#8221; /&gt;</span></p>
<p><span style="color: #000080;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;assets/knobKnob/knobKnob.css&#8221; /&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211;[if lt IE 9]&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;http://html5shiv.googlecode.com/svn/trunk/html5.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;![endif]&#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/head&gt;</span></p>
<p><span style="color: #000080;">&lt;body&gt;</span></p>
<p><span style="color: #000080;">&lt;section id=&#8221;main&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;bars&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;control&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; The knob markup will go here &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; The colorful dividers will go here &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p><span style="color: #000080;">&lt;/section&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; JavaScript includes &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;http://code.jquery.com/jquery-1.7.1.min.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;assets/knobKnob/transform.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;assets/knobKnob/knobKnob.jquery.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;script src=&#8221;assets/js/script.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #000080;">&lt;/body&gt;</span></p>
<p><span style="color: #000080;">&lt;/html&gt;</span></p>
<p><strong>Step 2: jQuery Code</strong></p>
<p><strong>assets/knobKnob/knobKnob.jquery.js</strong></p>
<pre><span style="color: #000080;">/**</span>
<span style="color: #000080;"> * @name               jQuery KnobKnob plugin</span>
<span style="color: #000080;"> * @author             Martin Angelov</span>
<span style="color: #000080;"> * @version    1.0</span>
<span style="color: #000080;"> * @url                http://tutorialzine.com/2011/11/pretty-switches-css3-jquery/</span>
<span style="color: #000080;"> * @license            MIT License</span>
<span style="color: #000080;"> */</span>

<span style="color: #000080;">(function($){</span>

<span style="color: #000080;">        $.fn.knobKnob = function(props){</span>

<span style="color: #000080;">               var options = $.extend({</span>
<span style="color: #000080;">                       snap: 0,</span>
<span style="color: #000080;">                       value: 0,</span>
<span style="color: #000080;">                       turn: function(){}</span>
<span style="color: #000080;">               }, props || {});</span>

<span style="color: #000080;">               var tpl = '&lt;div&gt;\</span>
<span style="color: #000080;">                               &lt;div&gt;&lt;/div&gt;\</span>
<span style="color: #000080;">                               &lt;div&gt;&lt;/div&gt;\</span>
<span style="color: #000080;">                       &lt;/div&gt;';</span>

<span style="color: #000080;">               return this.each(function(){</span>

<span style="color: #000080;">                       var el = $(this);</span>
<span style="color: #000080;">                       el.append(tpl);</span>

<span style="color: #000080;">                       var knob = $('.knob',el)</span>
<span style="color: #000080;">                               knobTop = knob.find('.top'),</span>
<span style="color: #000080;">                               startDeg = -1,</span>
<span style="color: #000080;">                               currentDeg = 0,</span>
<span style="color: #000080;">                               rotation = 0,</span>
<span style="color: #000080;">                               lastDeg = 0,</span>
<span style="color: #000080;">                               doc = $(document);</span>

<span style="color: #000080;">                       if(options.value &gt; 0 &amp;&amp; options.value &lt;= 359){</span>
<span style="color: #000080;">                               rotation = currentDeg = options.value;</span>
<span style="color: #000080;">                               knobTop.css('transform','rotate('+(currentDeg)+'deg)');</span>
<span style="color: #000080;">                               options.turn(currentDeg/359);</span>
<span style="color: #000080;">                       }</span>

<span style="color: #000080;">                       knob.on('mousedown', function(e){</span>

<span style="color: #000080;">                               e.preventDefault();</span>

<span style="color: #000080;">                               var offset = knob.offset();</span>
<span style="color: #000080;">                               var center = {</span>
<span style="color: #000080;">                                      y : offset.top + knob.height()/2,</span>
<span style="color: #000080;">                                      x: offset.left + knob.width()/2</span>
<span style="color: #000080;">                               };</span>

<span style="color: #000080;">                               var a, b, deg, tmp,</span>
<span style="color: #000080;">                                      rad2deg = 180/Math.PI;</span>

<span style="color: #000080;">                               knob.on('mousemove.rem',function(e){</span>

<span style="color: #000080;">                                      a = center.y - e.pageY;</span>
<span style="color: #000080;">                                      b = center.x - e.pageX;</span>
<span style="color: #000080;">                                      deg = Math.atan2(a,b)*rad2deg;</span>

<span style="color: #000080;">                                      // we have to make sure that negative</span>
<span style="color: #000080;">                                      // angles are turned into positive:</span>
<span style="color: #000080;">                                      if(deg&lt;0){</span>
<span style="color: #000080;">                                              deg = 360 + deg;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // Save the starting position of the drag</span>
<span style="color: #000080;">                                      if(startDeg == -1){</span>
<span style="color: #000080;">                                              startDeg = deg;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // Calculating the current rotation</span>
<span style="color: #000080;">                                      tmp = Math.floor((deg-startDeg) + rotation);</span>

<span style="color: #000080;">                                       // Making sure the current rotation</span>
<span style="color: #000080;">                                      // stays between 0 and 359</span>
<span style="color: #000080;">                                      if(tmp &lt; 0){</span>
<span style="color: #000080;">                                              tmp = 360 + tmp;</span>
<span style="color: #000080;">                                      }</span>
<span style="color: #000080;">                                      else if(tmp &gt; 359){</span>
<span style="color: #000080;">                                              tmp = tmp % 360;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // Snapping in the off position:</span>
<span style="color: #000080;">                                      if(options.snap &amp;&amp; tmp &lt; options.snap){</span>
<span style="color: #000080;">                                              tmp = 0;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      // This would suggest we are at an end position;</span>
<span style="color: #000080;">                                      // we need to block further rotation.</span>
<span style="color: #000080;">                                      if(Math.abs(tmp - lastDeg) &gt; 180){</span>
<span style="color: #000080;">                                              return false;</span>
<span style="color: #000080;">                                      }</span>

<span style="color: #000080;">                                      currentDeg = tmp;</span>
<span style="color: #000080;">                                      lastDeg = tmp;</span>

<span style="color: #000080;">                                      knobTop.css('transform','rotate('+(currentDeg)+'deg)');</span>
<span style="color: #000080;">                                      options.turn(currentDeg/359);</span>
<span style="color: #000080;">                               });</span>

<span style="color: #000080;">                               doc.on('mouseup.rem',function(){</span>
<span style="color: #000080;">                                      knob.off('.rem');</span>
<span style="color: #000080;">                                      doc.off('.rem');</span>

<span style="color: #000080;">                                      // Saving the current rotation</span>
<span style="color: #000080;">                                      rotation = currentDeg;</span>

<span style="color: #000080;">                                      // Marking the starting degree as invalid</span>
<span style="color: #000080;">                                      startDeg = -1;</span>
<span style="color: #000080;">                               });</span>

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

<span style="color: #000080;">})(jQuery);</span></pre>
<p><strong>assets/js/script.js</strong></p>
<pre><span style="color: #000080;">$(function(){</span>

<span style="color: #000080;">        var colors = [</span>
<span style="color: #000080;">               '26e000','2fe300','37e700','45ea00','51ef00',</span>
<span style="color: #000080;">               '61f800','6bfb00','77ff02','80ff05','8cff09',</span>
<span style="color: #000080;">               '93ff0b','9eff09','a9ff07','c2ff03','d7ff07',</span>
<span style="color: #000080;">               'f2ff0a','fff30a','ffdc09','ffce0a','ffc30a',</span>
<span style="color: #000080;">               'ffb509','ffa808','ff9908','ff8607','ff7005',</span>
<span style="color: #000080;">               'ff5f04','ff4f03','f83a00','ee2b00','e52000'</span>
<span style="color: #000080;">        ];</span>

<span style="color: #000080;">        var rad2deg = 180/Math.PI;</span>
<span style="color: #000080;">        var deg = 0;</span>
<span style="color: #000080;">        var bars = $('#bars');</span>

<span style="color: #000080;">        for(var i=0;i&lt;colors.length;i++){</span>

<span style="color: #000080;">               deg = i*12;</span>

<span style="color: #000080;">               // Create the colorbars</span>

<span style="color: #000080;">               $('&lt;div&gt;').css({</span>
<span style="color: #000080;">                       backgroundColor: '#'+colors[i],</span>
<span style="color: #000080;">                       transform:'rotate('+deg+'deg)',</span>
<span style="color: #000080;">                       top: -Math.sin(deg/rad2deg)*80+100,</span>
<span style="color: #000080;">                       left: Math.cos((180 - deg)/rad2deg)*80+100,</span>
<span style="color: #000080;">               }).appendTo(bars);</span>
<span style="color: #000080;">        }</span>

<span style="color: #000080;">        var colorBars = bars.find('.colorBar');</span>
<span style="color: #000080;">        var numBars = 0, lastNum = -1;</span>

<span style="color: #000080;">        $('#control').knobKnob({</span>
<span style="color: #000080;">               snap : 10,</span>
<span style="color: #000080;">               value: 154,</span>
<span style="color: #000080;">               turn : function(ratio){</span>
<span style="color: #000080;">                       numBars = Math.round(colorBars.length*ratio);</span>

<span style="color: #000080;">                       // Update the dom only when the number of active bars</span>
<span style="color: #000080;">                       // changes, instead of on every move</span>

<span style="color: #000080;">                       if(numBars == lastNum){</span>
<span style="color: #000080;">                               return false;</span>
<span style="color: #000080;">                       }</span>
<span style="color: #000080;">                       lastNum = numBars;</span>

<span style="color: #000080;">                       colorBars.removeClass('active').slice(0, numBars).addClass('active');</span>
<span style="color: #000080;">               }</span>
<span style="color: #000080;">        });</span>

<span style="color: #000080;">});         </span></pre>
<p>You can use this versatile plugin anywhere in your website as part of the administrative pages or even in the control panels.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="cleaninterface">cleaninterface</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery create div">jquery create div</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery html5 floor layout">jquery html5 floor layout</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery knob -image">jquery knob -image</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="jquery knob control">jquery knob control</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/" title="online math tutorial commentluv">online math tutorial commentluv</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/how-to-create-knobknob-a-shiny-knob-control-with-jquery-and-css3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gridless &#8211;  HTML5 &amp; CSS3 Framework With Beautiful Typography</title>
		<link>http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/</link>
		<comments>http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 10:20:58 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=20322</guid>
		<description><![CDATA[Gridless is an awesome HTML5 and CSS3 framework for making responsive, cross-browser websites with beautiful typography. Gridless has a simple approach on markup and styles. There aren&#8217;t any pre-made grid systems and the CSS isn&#8217;t littered with silly classes. Gridless is only a starting point, that should be edited to suit each project&#8217;s needs. Features [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="Link to Gridless -  HTML5 &#038; CSS3 Framework With Beautiful Typography"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/Ah2Dfo.jpg" alt="Ah2Dfo Gridless    HTML5 & CSS3 Framework With Beautiful Typography" title="" width="200" height="200" /></a><a title="gridless" rel="nofollow" href="http://thatcoolguy.github.com/gridless-boilerplate/" target="_blank">Gridless</a> is an awesome HTML5 and CSS3 framework for making responsive, cross-browser websites with beautiful typography. Gridless has a simple approach on markup and styles. There aren&#8217;t any pre-made grid systems and the CSS isn&#8217;t littered with silly classes. Gridless is only a starting point, that should be edited to suit each project&#8217;s needs.</p>
<p><span id="more-20322"></span></p>
<h3><a rel="nofollow" href="https://github.com/thatcoolguy/gridless-boilerplate"><img class="alignnone size-full wp-image-20408" title="gridless" src="http://blogfreakz.com/wp-content/uploads/2011/06/gridless.jpg" alt="gridless Gridless    HTML5 & CSS3 Framework With Beautiful Typography" width="600" height="300" /></a></h3>
<h3>Features</h3>
<ul>
<li>Responsive (responds to the user&#8217;s device screen width with the adequated <abbr>CSS</abbr>)</li>
<li>Progressive enhancement and mobile first</li>
<li>Cross-browser compatible (even IE6 and 7)</li>
<li>CSS normalization instead of CSS reset</li>
<li>Beautiful typography with a vertical rhythm</li>
<li>Print styles optimized for performance</li>
<li>Optimal caching</li>
<li>HTML5 and CSS3 ready</li>
<li>Safe CSS hacks instead of conditional classnames/stylesheets</li>
<li>Micro clearfix hack</li>
<li>A well-organized folder structure</li>
</ul>
<p class="download">Requirements: -<br />
Demo: <a title="gridless" rel="nofollow" href="http://thatcoolguy.github.com/gridless-boilerplate/demo/demo.html" target="_blank">http://thatcoolguy.github.com/gridless-boilerplate/demo/demo.html</a><br />
License: MIT License, GPL License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="html5 framework">html5 framework</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="css3 framework">css3 framework</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="html5 typography">html5 typography</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="css3 typography">css3 typography</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="gridless">gridless</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="typography framework">typography framework</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="Gridless html5">Gridless html5</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="gridless framework">gridless framework</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="HTML5 CSS3 framework">HTML5 CSS3 framework</a></li>
<li><a href="http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/" title="gridless css">gridless css</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/html5/gridless-html5-css3-framework-with-beautiful-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Layer Styles &#8211; Photoshop-Like HTML5 App For Creating CSS3</title>
		<link>http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/</link>
		<comments>http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/#comments</comments>
		<pubDate>Fri, 13 May 2011 05:49:42 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19835</guid>
		<description><![CDATA[Layer Styles HTML5 applications that allow you to create CSS. The user interface is smiliar like photoshop, popular graphics editor. It  Just like graphics editor but in your browser and it creates CSS. Features Colorpicker can pick any color of the element your working on Drag and Drop images onto the page to use them [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="Link to Layer Styles - Photoshop-Like HTML5 App For Creating CSS3 "><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/UClD0E.jpg" alt="UClD0E Layer Styles   Photoshop Like HTML5 App For Creating CSS3 " title="" width="200" height="200" /></a><a title="layerstyles" rel="nofollow" href="http://www.layerstyles.org/" target="_blank">Layer Styles</a> HTML5 applications that allow you to create CSS. The user interface is smiliar like photoshop, popular graphics editor. It  Just like graphics editor but in your browser and it creates CSS.</p>
<p><span id="more-19835"></span><a rel="nofollow" href="http://www.layerstyles.org"><img class="alignnone size-full wp-image-19857" title="layer-style" src="http://blogfreakz.com/wp-content/uploads/2011/05/layer-style.jpg" alt="layer style Layer Styles   Photoshop Like HTML5 App For Creating CSS3 " width="600" height="300" /></a></p>
<h3>Features</h3>
<p>Colorpicker can pick any color of the element your working on<br />
Drag and Drop images onto the page to use them as a background or to pick their colors<br />
Color Swatches, Gradients and Styles are locally stored</p>
<p>LayerStyles is <em>Open Source</em> and on <a rel="nofollow" href="https://github.com/mrflix/LayerStyles">Github</a>.</p>
<p class="download">Website: <a title="layerstyles" rel="nofollow" href="http://www.layerstyles.org/" target="_blank">http://www.layerstyles.org</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="html5 layer">html5 layer</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="html5 layers">html5 layers</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="html 5 layers">html 5 layers</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="html5 photoshop">html5 photoshop</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="layer html5">layer html5</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="create css photoshop">create css photoshop</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="html5 WYSIWYG editor page manager">html5 WYSIWYG editor page manager</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="how to create style for photoshop">how to create style for photoshop</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="css3 layer styles">css3 layer styles</a></li>
<li><a href="http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/" title="html 5 layer">html 5 layer</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/layer-styles-photoshop-like-html5-app-for-creating-css3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

