<?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; HTML5</title>
	<atom:link href="http://blogfreakz.com/tag/html5/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 Grayscale Image Hover In HTML5</title>
		<link>http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/</link>
		<comments>http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 10:08:26 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24537</guid>
		<description><![CDATA[It used to be that shifting an image from grayscale to colored and vice-versa as you hover over it required 2 copies of the said image &#8212; one in grayscale and the other in color.  But thanks to Darcy Clarke for the JavaScript &#38; HTML 5 grayscale in this tutorial, this feat is easier and [...]]]></description>
			<content:encoded><![CDATA[<p>It used to be that shifting an image from grayscale to colored and vice-versa as you hover over it required 2 copies of the said image &#8212; one in grayscale and the other in color.  But thanks to <a href="http://darcyclarke.me/"><strong>Darcy Clarke</strong></a> for the JavaScript &amp; HTML 5 grayscale in this tutorial, this feat is easier and faster because the grayscale image is generated from the original source.</p>
<p><a href="http://webdesignerwall.com/demo/html5-grayscale/"><img class="aligncenter size-medium wp-image-24543" title="JQuery Image Hover" src="http://blogfreakz.com/wp-content/uploads/2012/01/116-285x175.jpg" alt="116 285x175 Create A Grayscale Image Hover In HTML5" width="285" height="175" /></a></p>
<p style="text-align: center;">Click on the above image for the demo.</p>
<p><strong>Steps:</strong></p>
<ol>
<li>Get a copy of jquery.js</li>
<li>Paste the code below onto your web page. What the code will do is look for the target images (<strong>.item img</strong>) and then generate a grayscale version.</li>
</ol>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;script src=&#8221;jquery.min.js&#8221;   type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</span>&nbsp;</p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221;&gt;</span></p>
<p><span style="color: #003366;">// On window   load. This waits until images have loaded which is essential</span></p>
<p><span style="color: #003366;">$(window).load(function(){</span></p>
<p><span style="color: #003366;">//   Fade in images so there isn&#8217;t a color &#8220;pop&#8221; document load and then   on window load</span></p>
<p><span style="color: #003366;">$(&#8220;.item img&#8221;).fadeIn(500);</span></p>
<p><span style="color: #003366;">//   clone image</span></p>
<p><span style="color: #003366;">$(&#8216;.item img&#8217;).each(function(){</span></p>
<p><span style="color: #003366;">var   el = $(this);</span></p>
<p><span style="color: #003366;">el.css({&#8220;position&#8221;:&#8221;absolute&#8221;}).wrap(&#8220;&lt;div   class=&#8217;img_wrapper&#8217; style=&#8217;display:   inline-block&#8217;&gt;&#8221;).clone().addClass(&#8216;img_grayscale&#8217;).css({&#8220;position&#8221;:&#8221;absolute&#8221;,&#8221;z-index&#8221;:&#8221;998&#8243;,&#8221;opacity&#8221;:&#8221;0&#8243;}).insertBefore(el).queue(function(){</span></p>
<p><span style="color: #003366;">var   el = $(this);</span></p>
<p><span style="color: #003366;">el.parent().css({&#8220;width&#8221;:this.width,&#8221;height&#8221;:this.height});</span></p>
<p><span style="color: #003366;">el.dequeue();</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">this.src   = grayscale(this.src);</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">//   Fade image</span></p>
<p><span style="color: #003366;">$(&#8216;.item img&#8217;).mouseover(function(){</span></p>
<p><span style="color: #003366;">$(this).parent().find(&#8216;img:first&#8217;).stop().animate({opacity:1},   1000);</span></p>
<p><span style="color: #003366;">})</span></p>
<p><span style="color: #003366;">$(&#8216;.img_grayscale&#8217;).mouseout(function(){</span></p>
<p><span style="color: #003366;">$(this).stop().animate({opacity:0},   1000);</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">// Grayscale w   canvas method</span></p>
<p><span style="color: #003366;">function   grayscale(src){</span></p>
<p><span style="color: #003366;">var   canvas = document.createElement(&#8216;canvas&#8217;);</span></p>
<p><span style="color: #003366;">var   ctx = canvas.getContext(&#8217;2d&#8217;);</span></p>
<p><span style="color: #003366;">var   imgObj = new Image();</span></p>
<p><span style="color: #003366;">imgObj.src   = src;</span></p>
<p><span style="color: #003366;">canvas.width   = imgObj.width;</span></p>
<p><span style="color: #003366;">canvas.height   = imgObj.height;</span></p>
<p><span style="color: #003366;">ctx.drawImage(imgObj,   0, 0);</span></p>
<p><span style="color: #003366;">var   imgPixels = ctx.getImageData(0, 0, canvas.width, canvas.height);</span></p>
<p><span style="color: #003366;">for(var   y = 0; y &lt; imgPixels.height; y++){</span></p>
<p><span style="color: #003366;">for(var   x = 0; x &lt; imgPixels.width; x++){</span></p>
<p><span style="color: #003366;">var   i = (y * 4) * imgPixels.width + x * 4;</span></p>
<p><span style="color: #003366;">var   avg = (imgPixels.data[i] + imgPixels.data[i + 1] + imgPixels.data[i + 2]) /   3;</span></p>
<p><span style="color: #003366;">imgPixels.data[i]   = avg;</span></p>
<p><span style="color: #003366;">imgPixels.data[i   + 1] = avg;</span></p>
<p><span style="color: #003366;">imgPixels.data[i   + 2] = avg;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">ctx.putImageData(imgPixels,   0, 0, 0, 0, imgPixels.width, imgPixels.height);</span></p>
<p><span style="color: #003366;">return   canvas.toDataURL();</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">&lt;/script&gt;</span></td>
</tr>
</tbody>
</table>
<p>Be sure to set your target image (eg: .post-img, img, .gallery img, etc.)</p>
<p><strong>TIP:</strong> You may change the transition speed by adjusting the highlighted number in the code (ie. 1000 = 1 second)</p>
<p>Provided that JavaScript is enabled, this will work on any browser that supports HTML5 such as Safari, Chrome, and Firefox. Otherwise, the image will revert to its original colored state.</p>
<p><strong>Developer’s Note:</strong> if it doesn&#8217;t work with Firefox and Chrome locally, you need to put the HTML file on a web server.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 grayscale image hover">html5 grayscale image hover</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 and javascript greyscale images">html5 and javascript greyscale images</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="grayscale image hover">grayscale image hover</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="canvas html5 img hover texte">canvas html5 img hover texte</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5-grayscale-image-hover firefox bug">html5-grayscale-image-hover firefox bug</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 image grayscale on hover">html5 image grayscale on hover</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 image">html5 image</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 hover">html5 hover</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 greyscale">html5 greyscale</a></li>
<li><a href="http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/" title="html5 grayscale image hover tutorial">html5 grayscale image hover tutorial</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/creating-grayscale-image-hover-html5/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>Cuepoint.js &#8211;  Adding Cue-Points &amp; Subtitles To HTML5 Video</title>
		<link>http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/</link>
		<comments>http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 15:45:36 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=20961</guid>
		<description><![CDATA[Cuepoint.js is an open source jQuery plugin for adding subtitles to your HTML5 video. To implement this plugin is pretty simple. Simply pass in an object containing your slides to the cuepoint.init method. The time is in seconds. $(document).ready(function(){ var slides = {5:"Hello World"} cuepoint.init(slides); cuepoint.play(); }); If you want to create skip to links [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="Link to Cuepoint.js -  Adding Cue-Points &#038; Subtitles To HTML5 Video"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/2837DM.jpg" alt="2837DM Cuepoint.js    Adding Cue Points & Subtitles To HTML5 Video" title="" width="200" height="200" /></a><a title="cuepoint" rel="nofollow" href="http://cuepoint.org/">Cuepoint.js</a> is an open source jQuery plugin for adding subtitles to your HTML5 video. To implement this plugin is pretty simple. Simply pass in an object containing your slides to the cuepoint.init method.</p>
<p><span id="more-20961"></span><a rel="nofollow" href="http://cuepoint.org/"><img class="alignnone size-full wp-image-20963" title="cuepoint" src="http://blogfreakz.com/wp-content/uploads/2011/07/cuepoint.jpg" alt="cuepoint Cuepoint.js    Adding Cue Points & Subtitles To HTML5 Video" width="600" height="300" /></a></p>
<p>The time is in seconds.</p>
<pre>$(document).ready(function(){
  var slides = {5:"Hello World"}
  cuepoint.init(slides);
  cuepoint.play();
});</pre>
<p>If you want to create skip to links you can use the setTime(seconds) method and bind it to a jQuery click event.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="cuepoint" rel="nofollow" href="http://cuepoint.org/">http://cuepoint.org</a><br />
License: Other License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="Cuepoint JS">Cuepoint JS</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="jquery cue points">jquery cue points</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="jquery cue">jquery cue</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="html5 video cue points">html5 video cue points</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="flash video cue points javascript">flash video cue points javascript</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="html 5 video cue points">html 5 video cue points</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="jquery html5 slides video sync">jquery html5 slides video sync</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="html 5 subtiles video jquery">html 5 subtiles video jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="sync slide with cue point">sync slide with cue point</a></li>
<li><a href="http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/" title="jquery carousel video cue points">jquery carousel video cue points</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/cuepoint-js-adding-cue-points-subtitles-to-html5-video/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5 Music Player Plugin For jQuery</title>
		<link>http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/</link>
		<comments>http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 14:52:23 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Sound]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[player]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=20454</guid>
		<description><![CDATA[Remember that awesome music player psd created by Orman Clark?, The guys from codebase is create html5 music player plugin for jQuery by using this psd file. This jQuery plugin allow you to build your own playlist. The playlist uses the same format with jPlayer (an array of objects. However, this plugin requires you to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="Link to HTML5 Music Player Plugin For jQuery"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/22Djz6.jpg" alt="22Djz6 HTML5 Music Player Plugin For jQuery" title="" width="200" height="200" /></a>Remember that awesome <a rel="nofollow" href="http://www.premiumpixels.com/freebies/compact-music-player-psd/" target="_blank">music player psd</a> created by Orman Clark?, The guys from codebase is create html5 music player plugin for jQuery by using this psd file. This jQuery plugin allow you to build your own playlist. The playlist uses the same format with jPlayer (an array of objects. However, this plugin requires you to add some additional parameters.</p>
<p><span id="more-20454"></span><a rel="nofollow" href="http://www.codebasehero.com/2011/06/html-music-player/"><img class="alignnone size-full wp-image-20489" title="html5-player" src="http://blogfreakz.com/wp-content/uploads/2011/06/html5-player.jpg" alt="html5 player HTML5 Music Player Plugin For jQuery" width="600" height="300" /></a></p>
<p>You can also  specify some options, such as currency symbol, buy text, number of tracks to show and auto play setting.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="html5 music player" rel="nofollow" href="http://www.codebasehero.com/files/music-player/demo/" target="_blank">http://www.codebasehero.com/files/music-player/demo/</a><br />
License: Other License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="html5 music player">html5 music player</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="jquery player">jquery player</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="jquery music player">jquery music player</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="html5 jquery music player">html5 jquery music player</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="html5 music">html5 music</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="jquery music">jquery music</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="player jquery">player jquery</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="html5 player">html5 player</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="jquery html5 audio player">jquery html5 audio player</a></li>
<li><a href="http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/" title="html5 jquery audio player">html5 jquery audio player</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/sound/html5-music-player-plugin-for-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Droparea &#8211; HTML5 Drag &amp; Drop Image File Uploader</title>
		<link>http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/</link>
		<comments>http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 05:53:33 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[uploader]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=20402</guid>
		<description><![CDATA[Droparea is a HTML5 drag and drop image file uploader jQuery plug-in and a php script for server-side. Simply drag the image file into the specified area, the image will be automatically uploaded to your server. You can also see the progress of the upload too. Droparea has been tested on Google Chrome and Mozilla [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="Link to Droparea - HTML5 Drag &#038; Drop Image File Uploader"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/QXgzbh.jpg" alt="QXgzbh Droparea   HTML5 Drag & Drop Image File Uploader" title="" width="200" height="200" /></a><a title="droparea" rel="nofollow" href="http://gokercebeci.com/dev/droparea" target="_blank">Droparea</a> is a <strong>HTML5 drag and drop image file uploader jQuery plug-in</strong> and a php script for server-side. Simply drag the image file into the specified area, the image will be automatically uploaded to your server. You can also see the progress of the upload too. Droparea has been tested on Google Chrome and Mozilla Firefox.</p>
<p><span id="more-20402"></span></p>
<p><a rel="nofollow" href="http://gokercebeci.com/dev/droparea"><img class="alignnone size-full wp-image-20456" title="droparea" src="http://blogfreakz.com/wp-content/uploads/2011/06/droparea.jpg" alt="droparea Droparea   HTML5 Drag & Drop Image File Uploader" width="600" height="300" /></a></p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="demo" rel="nofollow" href="http://gokercebeci.com/dev/droparea" target="_blank">http://gokercebeci.com/dev/droparea</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="droparea">droparea</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="jquery droparea">jquery droparea</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="html5 drag and drop">html5 drag and drop</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="droparea jquery">droparea jquery</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="html5 drag and drop upload">html5 drag and drop upload</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="html5 droparea">html5 droparea</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="html5 drag">html5 drag</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="drag and drop image upload">drag and drop image upload</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="droparea demo">droparea demo</a></li>
<li><a href="http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/" title="html5 drag and drop file">html5 drag and drop file</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/html5/droparea-html5-drag-drop-image-file-uploader/feed/</wfw:commentRss>
		<slash:comments>0</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>jQuery HTML5 Uploader</title>
		<link>http://blogfreakz.com/jquery/jquery-html5-uploader/</link>
		<comments>http://blogfreakz.com/jquery/jquery-html5-uploader/#comments</comments>
		<pubDate>Sun, 22 May 2011 11:48:05 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[uploader]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19984</guid>
		<description><![CDATA[jQuery HTML5 Uploader is a lightweight jQuery plugin that lets you to quickly add an upload system a-la-Gmail into your web app. You only need to create a dropbox element (i.e. a div) and jQuery HTML5 Uploader will do the rest. Then you can drag &#38; drop one or more files on the element and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="Link to jQuery HTML5 Uploader"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/FIHtJh.jpg" alt="FIHtJh jQuery HTML5 Uploader" title="" width="200" height="200" /></a><a title="jquery html5 uploader" rel="nofollow" href="http://www.igloolab.com/jquery-html5-uploader/" target="_blank">jQuery HTML5 Uploader</a> is a lightweight jQuery plugin that lets you to quickly add an upload system a-la-Gmail into your web app. You only need to create a dropbox element (i.e. a div) and jQuery HTML5 Uploader will do the rest. Then you can drag &amp; drop one or more files on the element and the files will be uploaded. It also works with the multiple input file element.<br />
<span id="more-19984"></span></p>
<p><a rel="nofollow" href="http://www.igloolab.com/jquery-html5-uploader/"><img class="alignnone size-full wp-image-20016" title="jquery-html5-uploader" src="http://blogfreakz.com/wp-content/uploads/2011/05/jquery-html5-uploader.jpg" alt="jquery html5 uploader jQuery HTML5 Uploader" width="600" height="300" /></a></p>
<p>The upload function is divided into two asynchronous operations: client side, the file is loaded in the browser memory with a FileReader object. Useful if you want, for example, to show the image preview while uploading a picture. The server side operation consists in sending the binary file string to the postUrl (see settings).<br />
It has been tested and works on Firefox and Chrome.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="jquery html5 uploader" rel="nofollow" href="http://www.igloolab.com/jquery-html5-uploader/" target="_blank">http://www.igloolab.com/jquery-html5-uploader/</a><br />
License: Free License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="jquery html5 uploader">jquery html5 uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="html5 uploader">html5 uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="jquery html5 upload">jquery html5 upload</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="jquery uploader">jquery uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="html5Uploader">html5Uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="jquery upload html5">jquery upload html5</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="jquery image uploader">jquery image uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="jquery-html5-uploader">jquery-html5-uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="free html5 uploader">free html5 uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-html5-uploader/" title="upload html5">upload html5</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/jquery-html5-uploader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G5 &#8211; HTML5, CSS3, PHP &amp; jQuery Front End Framework</title>
		<link>http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/</link>
		<comments>http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/#comments</comments>
		<pubDate>Tue, 03 May 2011 02:00:23 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Framework]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19660</guid>
		<description><![CDATA[G5 Framework started as a personal project. In an attempt to speed up workflow, reuse the best coding practices &#38; similar coding techniques, the framework serves as a starter file for new websites. G5 is a framework for building PHP-powered HTML5 websites which makes use of popular resources. G5 Packed With: Modernizr 1.6 Eric Meyer&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a title="g5 framework" rel="nofollow" href="http://framework.gregbabula.info/" target="_blank">G5 Framework</a> started as a personal project. In an attempt to speed up workflow, reuse the best coding practices &amp; similar coding techniques, the framework serves as a starter file for new websites. G5 is a framework for building PHP-powered HTML5 websites which makes use of popular resources.</p>
<p><span id="more-19660"></span><br />
<a rel="nofollow" href="http://framework.gregbabula.info/"><img class="alignnone size-full wp-image-19661" title="g5-framework" src="http://blogfreakz.com/wp-content/uploads/2011/05/g5-framework.jpg" alt="g5 framework G5   HTML5, CSS3, PHP & jQuery Front End Framework" width="600" height="300" /></a></p>
<p>G5 Packed With:</p>
<ul>
<li> Modernizr 1.6</li>
<li> Eric Meyer&#8217;s Reset Reloaded</li>
<li> jQuery 1.5.2 with fallback</li>
<li> CSS3 PIE</li>
<li> CSS3 Buttons</li>
<li> Easy Grid</li>
<li> IE6 PNG Fix + IE6 Update</li>
<li> Tipsy Tool Tips</li>
<li> Reveal Modals</li>
<li> Orbit Image Slider</li>
</ul>
<p>Framework Features</p>
<ul>
<li> HTML5 baseline</li>
<li> Base CSS</li>
<li> PHP Active Class</li>
<li> Smooth Scroll to Top</li>
<li> HTML5 Placeholder Fallback</li>
<li> Base SEO</li>
<li> Based on a F Layout</li>
<li> Sticky Footer</li>
<li> Clean Organization</li>
</ul>
<p>G5 is free for personal &amp; commercial use as long as humans.txt remains unchanged &amp; in the index head.</p>
<p class="download">Requirements:-<br />
Demo: <a title="g5 framework" rel="nofollow" href="http://framework.gregbabula.info/" target="_blank">http://framework.gregbabula.info</a><br />
License: Other license</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="g5 html5">g5 html5</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="HTML5 CSS3 jquery framework">HTML5 CSS3 jquery framework</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="html5 css3 php">html5 css3 php</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="php editor support jquery css3 html5">php editor support jquery css3 html5</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="html5 css3 jquery editor">html5 css3 jquery editor</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="jquery IDE">jquery IDE</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="jquery frontend">jquery frontend</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="html5 css3 jquery php">html5 css3 jquery php</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="css3 php">css3 php</a></li>
<li><a href="http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/" title="CSS3 jquery Framework">CSS3 jquery Framework</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/framework/g5-html5-css3-php-jquery-front-end-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laker &#8211; Create Digital Publications With HTML5 And Convert To iOS Apps</title>
		<link>http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/</link>
		<comments>http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 01:25:09 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19441</guid>
		<description><![CDATA[Laker is a compendium of files, frameworks, styles and tips for designing digital publications in HTML5. Laker allow you to distribute our publication as an app for iPhone and iPad. The layout scales automatically depending on screen size and orientation. You can swipe to change pages and show a table of contents by DoubleTap. Laker [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" title="laker" href="http://www.lakercompendium.com" target="_blank">Laker</a> is a compendium of files, frameworks, styles and tips for designing digital publications in HTML5. Laker allow you to distribute our publication as an app for iPhone and iPad. The layout scales automatically depending on screen size and orientation.</p>
<p><span id="more-19441"></span></p>
<p><a  rel="nofollow" href="http://www.lakercompendium.com"><img class="alignnone size-full wp-image-19446" title="laker" src="http://blogfreakz.com/wp-content/uploads/2011/04/laker.jpg" alt="laker Laker   Create Digital Publications With HTML5 And Convert To iOS Apps" width="600" height="300" /></a></p>
<p>You can swipe to change pages and show a table of contents by DoubleTap. Laker implement native looking slideshows. We can also Include sound, YouTube videos, images, multi-column layouts and more. The layout even adapts to a desktop browser.<br />
With laker, we can build digital magazines, catalogues, slideshows, surveys, conference schedules and everything else you can imagine.</p>
<p class="download">
Requirements: A Mac and xCode (for exporting the app)<br />
Demo: <a  rel="nofollow" title="laker" href="http://www.lakercompendium.com/" target="_blank">http://www.lakercompendium.com</a><br />
License: Other License
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="Laker iOS">Laker iOS</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="laker html5">laker html5</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="Laker wordpress">Laker wordpress</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="html5 laker">html5 laker</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="html5 WYSIWYG editor page manager">html5 WYSIWYG editor page manager</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="html5 lakers">html5 lakers</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="laker html5 demo">laker html5 demo</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="html5 catalogue ipad">html5 catalogue ipad</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="laker compendium">laker compendium</a></li>
<li><a href="http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/" title="iOS Laker">iOS Laker</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/laker-create-digital-publications-with-html5-and-convert-to-ios-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speakker &#8211; Crossbrowser HTML5 Audio Player</title>
		<link>http://blogfreakz.com/html5/crossbrowser-html5-audio-player/</link>
		<comments>http://blogfreakz.com/html5/crossbrowser-html5-audio-player/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 13:13:04 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[player]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18766</guid>
		<description><![CDATA[Speakker is a fully featured audio player based on projekktor featuring native audio with Flash fallback. Speakkercomes out of the box in two variations and with incredible options of customization: Flexible dimensions, unlimited colors and two different button sets for light and dark themes. Speakker is easy to set up. We can insert Speakker into [...]]]></description>
			<content:encoded><![CDATA[<p><a title="speakker" rel="nofollow" href="http://www.speakker.com/" target="_blank">Speakker</a> is a fully featured audio player based on projekktor featuring native audio with Flash fallback. Speakkercomes out of the box in two variations and with incredible options of customization: Flexible dimensions, unlimited colors<br />
and two different button sets for light and dark themes.</p>
<p><span id="more-18766"></span><a rel="nofollow" href="http://www.speakker.com/"><img class="alignnone size-full wp-image-18767" title="speakker" src="http://blogfreakz.com/wp-content/uploads/2011/04/speakker.jpg" alt="speakker Speakker   Crossbrowser HTML5 Audio Player " width="600" height="300" /></a></p>
<p>Speakker is easy to set up. We can insert Speakker into any web page  with just a few lines of Javascript and a quantum CSS. Featuring the technology of Projekktor it comes with cross-browser compability, Flash-fall back plus optional<br />
social- and artists information links.</p>
<p class="download">Requirements: -<br />
Demo: <a rel="nofollow" href="http://www.speakker.com/demo/" target="_blank">http://www.speakker.com/demo/</a><br />
License:  GPL License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="html5 audio player">html5 audio player</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="audio player html5">audio player html5</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="html5 audio framework">html5 audio framework</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="html 5 audio player">html 5 audio player</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="cross browser audio player">cross browser audio player</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="soundplayer html5">soundplayer html5</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="html5 sound player">html5 sound player</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="Speakker">Speakker</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="html5 audioplayer">html5 audioplayer</a></li>
<li><a href="http://blogfreakz.com/html5/crossbrowser-html5-audio-player/" title="html5 soundplayer">html5 soundplayer</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/html5/crossbrowser-html5-audio-player/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

