<?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 - Web Design and Web Development resources &#187; apple</title>
	<atom:link href="http://blogfreakz.com/tag/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Wed, 23 May 2012 08:06:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>jQuery Apple Retina Effect</title>
		<link>http://blogfreakz.com/web-design/jquery-apple-retina-effect/</link>
		<comments>http://blogfreakz.com/web-design/jquery-apple-retina-effect/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 14:23:22 +0000</pubDate>
		<dc:creator>Marvin@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[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24418</guid>
		<description><![CDATA[Recreate Apple’s Retina display with this awesome tutorial! Thanks to web developer Martin Angelov, he designed a fully functional Apple-like Retina effect using the jQuery library. Below are the steps on how to achieve this effect. 1. XHTML The markup is pretty much straight forward and has few divs and images. &#60;div id="main"&#62; &#60;div id="iphone"&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong>Recreate Apple’s Retina display with this awesome tutorial! Thanks to web developer <strong><a href="http://tutorialzine.com" target="_blank">Martin Angelov</a></strong>, he designed a fully functional Apple-like Retina effect using the jQuery library.</p>
<p><a href="http://www.designdim.com/wp-content/uploads/2011/03/jquery-retina-effect-tutorialzine.jpg"><img class="aligncenter size-large wp-image-24429" title="Apple Retina" src="http://blogfreakz.com/wp-content/uploads/2012/01/110-451x250.jpg" alt="110 451x250 jQuery Apple Retina Effect " width="451" height="250" /></a></p>
<p>Below are the steps on how to achieve this effect.</p>
<p><strong>1. </strong><strong>XHTML</strong><strong> </strong></p>
<p>The markup is pretty much straight forward and has few divs and images.</p>
<pre><span style="color: #003366;">&lt;div id="main"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="iphone"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="webpage"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;img src="img/webpage.png" width="499" height="283" alt="Web Page" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="retina"&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<p>This is a simulation of what you will achieve with the above code.</p>
<p><strong> </strong></p>
<p><strong>2. CSS</strong></p>
<p>This is the styling for the retina divs, iPhone and webpage effect.</p>
<p><strong>Styles.css</strong></p>
<pre><span style="color: #003366;">#iphone{</span>
<span style="color: #003366;">        /* The iphone frame div */</span>
<span style="color: #003366;">        width:750px;</span>
<span style="color: #003366;">        height:400px;</span>
<span style="color: #003366;">        background:url('img/iphone_4G.png') no-repeat center center;</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">#webpage{</span>
<span style="color: #003366;">        /* Contains the webpage screenshot */</span>
<span style="color: #003366;">        width:499px;</span>
<span style="color: #003366;">        height:283px;</span>
<span style="color: #003366;">        position:absolute;</span>
<span style="color: #003366;">        top:50%;</span>
<span style="color: #003366;">        left:50%;</span>
<span style="color: #003366;">        margin:-141px 0 0 -249px;</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">#retina{</span>
<span style="color: #003366;">        /* The Retina effect */</span>
<span style="color: #003366;">        background:url('img/webpage.png') no-repeat center center white;</span>
<span style="color: #003366;">        border:2px solid white;</span>

<span style="color: #003366;">        /* Positioned absolutely, so we can move it around */</span>
<span style="color: #003366;">        position:absolute;</span>
<span style="color: #003366;">        height:180px;</span>
<span style="color: #003366;">        width:180px;</span>

<span style="color: #003366;">        /* Hidden by default */</span>
<span style="color: #003366;">        display:none;</span>

<span style="color: #003366;">        /* A blank cursor, notice the default fallback */</span>
<span style="color: #003366;">        cursor:url('img/blank.cur'),default;</span>

<span style="color: #003366;">        /* CSS3 Box Shadow */</span>
<span style="color: #003366;">        -moz-box-shadow:0 0 5px #777, 0 0 10px #aaa inset;</span>
<span style="color: #003366;">        -webkit-box-shadow:0 0 5px #777;</span>
<span style="color: #003366;">        box-shadow:0 0 5px #777, 0 0 10px #aaa inset;</span>

<span style="color: #003366;">        /* CSS3 rounded corners */</span>
<span style="color: #003366;">        -moz-border-radius:90px;</span>
<span style="color: #003366;">        -webkit-border-radius:90px;</span>
<span style="color: #003366;">        border-radius:90px;</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">#retina.chrome{</span>
<span style="color: #003366;">        /* A special chrome version of the cursor */</span>
<span style="color: #003366;">        cursor:url('img/blank_google_chrome.cur'),default;</span>
<span style="color: #003366;">}</span>

<span style="color: #003366;">#main{</span>
<span style="color: #003366;">        /* The main div */</span>
<span style="color: #003366;">        margin:40px auto;</span>
<span style="color: #003366;">        position:relative;</span>
<span style="color: #003366;">        width:750px;</span>
<span style="color: #003366;">}</span></pre>
<p><strong>3. </strong><strong>jQuery</strong></p>
<p><strong>script.js</strong></p>
<p><strong> </strong></p>
<pre><span style="color: #003366;">$(document).ready(function(){</span>

<span style="color: #003366;">        /* This code is executed on the document ready event */</span>

<span style="color: #003366;">        var left       = 0,</span>
<span style="color: #003366;">               top            = 0,</span>
<span style="color: #003366;">               sizes   = { retina: { width:190, height:190 },</span>
<span style="color: #003366;">                               webpage:{ width:500, height:283 } },</span>
<span style="color: #003366;">               webpage = $('#webpage'),</span>
<span style="color: #003366;">               offset  = { left: webpage.offset().left, top: webpage.offset().top },</span>
<span style="color: #003366;">               retina  = $('#retina');</span>

<span style="color: #003366;">        if(navigator.userAgent.indexOf('Chrome')!=-1)</span>
<span style="color: #003366;">        {</span>
<span style="color: #003366;">               /*      Applying a special chrome curosor,</span>
<span style="color: #003366;">                       as it fails to render completely blank curosrs. */</span>

<span style="color: #003366;">               retina.addClass('chrome');</span>
<span style="color: #003366;">        }</span>

<span style="color: #003366;">        webpage.mousemove(function(e){</span>

<span style="color: #003366;">               left = (e.pageX-offset.left);</span>
<span style="color: #003366;">               top = (e.pageY-offset.top);</span>

<span style="color: #003366;">               if(retina.is(':not(:animated):hidden')){</span>
<span style="color: #003366;">                       /* Fixes a bug where the retina div is not shown */</span>
<span style="color: #003366;">                       webpage.trigger('mouseenter');</span>
<span style="color: #003366;">               }</span>

<span style="color: #003366;">               if(left&lt;0 || top&lt;0 || left &gt; sizes.webpage.width ||</span>
<span style="color: #003366;">                       top &gt; sizes.webpage.height)</span>
<span style="color: #003366;">               {</span>
<span style="color: #003366;">                       /*      If we are out of the bondaries of the</span>
<span style="color: #003366;">                               webpage screenshot, hide the retina div */</span>

<span style="color: #003366;">                       if(!retina.is(':animated')){</span>
<span style="color: #003366;">                               webpage.trigger('mouseleave');</span>
<span style="color: #003366;">                       }</span>
<span style="color: #003366;">                       return false;</span>
<span style="color: #003366;">               }</span>

<span style="color: #003366;">               /*      Moving the retina div with the mouse</span>
<span style="color: #003366;">                       (and scrolling the background) */</span>

<span style="color: #003366;">               retina.css({</span>
<span style="color: #003366;">                       left                           : left - sizes.retina.width/2,</span>
<span style="color: #003366;">                       top                                   : top - sizes.retina.height/2,</span>
<span style="color: #003366;">                       backgroundPosition     : '-'+(1.6*left)+'px -'+(1.35*top)+'px'</span>
<span style="color: #003366;">               });</span>

<span style="color: #003366;">        }).mouseleave(function(){</span>
<span style="color: #003366;">               retina.stop(true,true).fadeOut('fast');</span>
<span style="color: #003366;">        }).mouseenter(function(){</span>
<span style="color: #003366;">               retina.stop(true,true).fadeIn('fast');</span>
<span style="color: #003366;">        });</span>
<span style="color: #003366;">});</span></pre>
<p><strong> </strong></p>
<p>Angelov also provided a zip file which you may download <strong><a href="http://demo.tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/demo.zip" target="_blank">here</a><a href="http://demo.tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/demo.zip" target="_blank">.</a> </strong><a href="http://demo.tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/demo.zip"><strong> </strong></a><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="jquery apple">jquery apple</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="jquery apple effect">jquery apple effect</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="divs">divs</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="retina chrome">retina chrome</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="retina css">retina css</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="jquery apple effect chrome">jquery apple effect chrome</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="retina img jquery wordpress">retina img jquery wordpress</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="jquery apple retina">jquery apple retina</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="jquery retina effect">jquery retina effect</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-apple-retina-effect/" title="jquery zip code radius search">jquery zip code radius search</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/jquery-apple-retina-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 Free Handy iPad Apps for Productivity</title>
		<link>http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/</link>
		<comments>http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 09:30:31 +0000</pubDate>
		<dc:creator>Ahmad Hania</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Popular]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[free ipad apps]]></category>
		<category><![CDATA[ipad applications]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[productivity apps for ipad]]></category>
		<category><![CDATA[Roundups]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/25-free-handy-ipad-apps-for-productivity/</guid>
		<description><![CDATA[Hi Blogfreakz, in this technology era we have lot of Tablets, most notably from Apple Inc&#8217;s  iPad. This is a famous and ultimate gadget for school children, college youth, school teachers, college professors, top air lines, some of major country defense departments also using this famous gadget. In this ultimate roundup we’re sharing must have [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Blogfreakz, in this technology era we have lot of Tablets, most notably from Apple Inc&#8217;s  iPad. This is a famous and ultimate gadget for school children, college youth, school teachers, college professors, top air lines, some of major country defense departments also using this famous gadget. In this ultimate roundup we’re sharing must have apps for iPad in order to  increase your productivity as newbie and as a professional.  All of these are on the top downloaded app category.  Hope you’ll enjoy these,  and also share your own experience if we miss some other major iPad productivity applications.</p>
<p>Take a look:<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="handy iPad apps">handy iPad apps</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="ipad apps productivity">ipad apps productivity</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="free handy iPad apps">free handy iPad apps</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="must have productivity apps for ipad">must have productivity apps for ipad</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="must have ipad apps for design">must have ipad apps for design</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="must have free ipad apps">must have free ipad apps</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="tool app ipad free">tool app ipad free</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="ipad web design apps">ipad web design apps</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="ipad productivity apps">ipad productivity apps</a></li>
<li><a href="http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/" title="ipad must have free apps">ipad must have free apps</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/25-free-handy-ipad-apps-for-productivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is iPad a Suitable Tool for Graphic Designing?</title>
		<link>http://blogfreakz.com/news/is-ipad-a-suitable-tool-for-graphic-designing/</link>
		<comments>http://blogfreakz.com/news/is-ipad-a-suitable-tool-for-graphic-designing/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 10:17:37 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/is-ipad-a-suitable-tool-for-graphic-designing/</guid>
		<description><![CDATA[In this post, I will take a quick review of the product from a graphic designing perspective. It is beyond doubt that it a sexy product however, the question that arises here is did iPad do any good to graphic designers in making their work easier without harming the quality of the work?]]></description>
			<content:encoded><![CDATA[<p>In this post, I will take a quick review of the product from a graphic designing perspective. It is beyond doubt that it a sexy product however, the question that arises here is did iPad do any good to graphic designers in making their work easier without harming the quality of the work?</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/is-ipad-a-suitable-tool-for-graphic-designing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Mac is Best Suited for Designers?</title>
		<link>http://blogfreakz.com/news/which-mac-is-best-suited-for-designers/</link>
		<comments>http://blogfreakz.com/news/which-mac-is-best-suited-for-designers/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 08:01:09 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Graphic Designer]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/which-mac-is-best-suited-for-designers/</guid>
		<description><![CDATA[Nothing lasts forever, and same rule can be applied for Microsoft who ruled the IT industry for quite a long time. The advent of Apple Macintosh, things changed quickly and today Microsoft is still growing but within a tough competition. The Macintosh basically is an alternative operating system and has numerous advantages over Microsoft which [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing lasts forever, and same rule can be applied for Microsoft who ruled the IT industry for quite a long time. The advent of Apple Macintosh, things changed quickly and today Microsoft is still growing but within a tough competition. The Macintosh basically is an alternative operating system and has numerous advantages over Microsoft which I have discussed in my previous post.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/which-mac-is-best-suited-for-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>40 Splendid Apple iPad Wallpapers</title>
		<link>http://blogfreakz.com/news/40-splendid-apple-ipad-wallpapers/</link>
		<comments>http://blogfreakz.com/news/40-splendid-apple-ipad-wallpapers/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 11:47:17 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/40-splendid-apple-ipad-wallpapers/</guid>
		<description><![CDATA[We have adorable mix of nature, abstract, space, artistic, logo, animal and cityscape images]]></description>
			<content:encoded><![CDATA[<p>We have adorable mix of nature, abstract, space, artistic, logo, animal and cityscape images</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/40-splendid-apple-ipad-wallpapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 and Apple Try to Create the New Flash</title>
		<link>http://blogfreakz.com/news/html5-and-apple-try-to-create-the-new-flash/</link>
		<comments>http://blogfreakz.com/news/html5-and-apple-try-to-create-the-new-flash/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 20:16:17 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/html5-and-apple-try-to-create-the-new-flash/</guid>
		<description><![CDATA[Apple is trying to unseat the champion &#8211; Adobe Flash &#8211; for their chance to bask in the glory (with the help of HTML5 of course). So, which one will be better?]]></description>
			<content:encoded><![CDATA[<p>Apple is trying to unseat the champion &#8211; Adobe Flash &#8211; for their chance to bask in the glory (with the help of HTML5 of course). So, which one will be better?</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/html5-and-apple-try-to-create-the-new-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Round Up: Notable Technology Trends in 2010</title>
		<link>http://blogfreakz.com/news/round-up-notable-technology-trends-in-2010/</link>
		<comments>http://blogfreakz.com/news/round-up-notable-technology-trends-in-2010/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 18:02:16 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone 4]]></category>
		<category><![CDATA[kinect]]></category>
		<category><![CDATA[leaps and bounds]]></category>
		<category><![CDATA[macbooks]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[roller coaster ride]]></category>
		<category><![CDATA[sleeping giants]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/round-up-notable-technology-trends-in-2010/</guid>
		<description><![CDATA[We are about halfway through the year, and the technological world has progressed by leaps and bounds already. So much so, that in their effort to keep up with]]></description>
			<content:encoded><![CDATA[<p>We are about halfway through the year, and the technological world has<br />
progressed by leaps and bounds already. So much so, that in their<br />
effort to keep up with</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/round-up-notable-technology-trends-in-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Initial Thoughts After Buying An iPad</title>
		<link>http://blogfreakz.com/news/initial-thoughts-after-buying-an-ipad/</link>
		<comments>http://blogfreakz.com/news/initial-thoughts-after-buying-an-ipad/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 00:01:54 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/initial-thoughts-after-buying-an-ipad/</guid>
		<description><![CDATA[Last weekend I finally bought an iPad and thought I’d share some initial thoughts about using it so far as well as some thoughts about how I can see myself using it a few months down the line.]]></description>
			<content:encoded><![CDATA[<p>Last weekend I finally bought an iPad and thought I’d share some initial thoughts about using it so far as well as some thoughts about how I can see myself using it a few months down the line.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/initial-thoughts-after-buying-an-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Apple-like Retina Effect With jQuery</title>
		<link>http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/</link>
		<comments>http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 06:40:02 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=6430</guid>
		<description><![CDATA[Apple has long applied a winning strategy in marketing – create well designed products, have a dedicated fan base, and let the hype build up before every product release. This is also the case with the latest version of their iPhone. One of the interesting stuf we can found on the latest iphone version is [...]]]></description>
			<content:encoded><![CDATA[<p>Apple has long applied a winning strategy in marketing – create well  designed products, have a dedicated fan base, and let the hype build up  before every product release. This is also the case with the latest version of their iPhone. One of the interesting stuf we can found on the latest iphone version is the term they coined – “<strong>Retina display</strong>” and  the promo image accompanying it.</p>
<p><span id="more-6430"></span></p>
<p>That&#8217;s why tutorialzine do litle experiment and writen  tutorial  &#8220;<strong>How to Create Apple-like Retina Effect</strong>&#8221; with only jQuery and CSS.</p>
<p><img class="size-large wp-image-6431 aligncenter" title="retina-effect" src="http://blogfreakz.com/wp-content/uploads/2010/06/retina-effect-600x329.jpg" alt="retina effect 600x329 How to Create Apple like Retina Effect With jQuery" width="600" height="329" /></p>
<p>The screenshot is actually displayed at half its original size, as they  are using the same image for both the small version (displayed in the   iPhone) and big version, which is shown in the rounded tooltip. Lastly they have the retina div, which is rounded with CSS3 and  displays the big version of the webpage screeshot as its background as  it is moved around with the mouse.</p>
<p class="download"><strong>Requirements</strong>: jQuery framework<br />
<strong>Demo</strong>: <a title="Retina Effect" rel="nofollow" href="http://demo.tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/demo.html" target="_blank">http://demo.tutorialzine.com/2010/06/apple-like-retina-effect-jquery-css/demo.html</a><br />
<strong>License</strong>: License Free</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="applelike image gallery">applelike image gallery</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="jquery apple effect">jquery apple effect</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="jquery retina">jquery retina</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="retina effect">retina effect</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="apple effect jquery">apple effect jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="jquery retina effect">jquery retina effect</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="Apple-like Retina Effect With jQuery">Apple-like Retina Effect With jQuery</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="jquery mobile retina display">jquery mobile retina display</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="apple like image gallery">apple like image gallery</a></li>
<li><a href="http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/" title="jquery retina display">jquery retina display</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/how-to-create-apple-like-retina-effect-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>35 Really Useful Free iPhone Apps</title>
		<link>http://blogfreakz.com/news/35-really-useful-free-iphone-apps/</link>
		<comments>http://blogfreakz.com/news/35-really-useful-free-iphone-apps/#comments</comments>
		<pubDate>Thu, 20 May 2010 15:24:01 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Free iPhone Apps]]></category>
		<category><![CDATA[iPhone 3G Apps]]></category>
		<category><![CDATA[iPhone Applications]]></category>
		<category><![CDATA[iPhone Apps]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/35-really-useful-free-iphone-apps/</guid>
		<description><![CDATA[We have some really useful Free iPhone Applications, we collect variety of free apps for regular usage, iPhone is not a dream anymore as the latest 3Gs iPhone is now furnished with an auto-focus mechanism taking 3 Megapixel images. A look around the internet will show you rather decent photos taken by iPhone as people [...]]]></description>
			<content:encoded><![CDATA[<p>We have some really useful <strong>Free iPhone Applications</strong>, we collect variety of <strong>free apps</strong> for regular usage, iPhone is not a dream anymore as the latest 3Gs iPhone is now furnished with an auto-focus mechanism taking 3 Megapixel images. A look around the internet will show you rather decent photos taken by iPhone as people quit <strong>printing photos</strong> – who will when with a few taps, they can share theirs instantly<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/news/35-really-useful-free-iphone-apps/" title="free usefull iphone apps">free usefull iphone apps</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/35-really-useful-free-iphone-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

