<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Web Design &amp; Development in Camberley, Surrey</title>
	
	<link>http://theboywhocriedfox.com</link>
	<description>Web Designer &amp; front-end developer</description>
	<lastBuildDate>Tue, 24 Jul 2012 10:36:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheBoyWhoCriedFox" /><feedburner:info uri="theboywhocriedfox" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Harry Roberts Talk from Front-Trends conf</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/l10T7xJd7lk/</link>
		<comments>http://theboywhocriedfox.com/web-development/harry-roberts-talk-from-front-trends-conf/#comments</comments>
		<pubDate>Thu, 19 Jul 2012 22:14:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=900</guid>
		<description><![CDATA[Today Harry&#8217;s talk from Front-Trends was released on vimeo. I&#8217;ve been familiar with Harry&#8217;s work for a long time now through his blog, twitter and&#160;forums. I found his talk and reasoning for his methods genuinely inspiring &#8211; one of those &#8216;ah ha&#8217; moments and honestly think the practices will help me build more maintainable websites &#8211; too [...]]]></description>
				<content:encoded><![CDATA[<p>Today Harry&#8217;s talk from Front-Trends was released on vimeo. I&#8217;ve been familiar with Harry&#8217;s work for a long time now through <a href="http://csswizardry.com/">his blog</a>, <a href="http://twitter.com/csswizardry">twitter </a>and&nbsp;forums.</p>
<p>I found his talk and reasoning for his methods genuinely inspiring &#8211; one of those &#8216;ah ha&#8217; moments and honestly think the practices will help me build more maintainable websites &#8211; too often we&#8217;re thinking of how the site should look right now or replicating a PSD rather than thinking how it might change and need to&nbsp;grow.</p>
<p>It&#8217;s thinking like this that evolves a really good developer to become a really great&nbsp;developer.</p>
<p>Take a&nbsp;look:</p>
<p><iframe src="http://player.vimeo.com/video/44773888" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen&nbsp;allowFullScreen></iframe></p>
<p><a href="http://vimeo.com/44773888">Breaking Good Habits &#8211; Harry Roberts</a> from <a href="http://vimeo.com/user9986068">Front-Trends</a> on <a&nbsp;href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/web-development/harry-roberts-talk-from-front-trends-conf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/web-development/harry-roberts-talk-from-front-trends-conf/</feedburner:origLink></item>
		<item>
		<title>Using correct post heading tags on WordPress index/blog template</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/dp0AfIxqbeE/</link>
		<comments>http://theboywhocriedfox.com/web-development/using-correct-post-heading-tags-on-wordpress-indexblog-template/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 16:22:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code snippets]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=868</guid>
		<description><![CDATA[Generally in the WordPress loop we&#8217;ll create one snippet of code which is repeated on a blogs landing page showing your first 5 &#8211; 10 post snippets. The loop will output something like the&#160;below: &#60;article&#62;     &#60;h2&#62;Post Title&#60;/h2&#62;     &#60;p&#62;Post Excerpt…&#60;/p&#62;     &#60;p&#62;&#60;a href=""&#62;Read Full Article&#60;/a&#62;&#60;/p&#62; &#60;/article&#62; &#60;article&#62;     &#60;h2&#62;Post Title&#60;/h2&#62;     &#60;p&#62;Post Excerpt…&#60;/p&#62;    [...]]]></description>
				<content:encoded><![CDATA[<p>Generally in the WordPress loop we&#8217;ll create one snippet of code which is repeated on a blogs landing page showing your first 5 &#8211; 10 post snippets. The loop will output something like the&nbsp;below:</p>
<pre>&lt;article&gt;
    &lt;h2&gt;Post Title&lt;/h2&gt;
    &lt;p&gt;Post Excerpt…&lt;/p&gt;
    &lt;p&gt;&lt;a href=""&gt;Read Full Article&lt;/a&gt;&lt;/p&gt;
&lt;/article&gt;

&lt;article&gt;
    &lt;h2&gt;Post Title&lt;/h2&gt;
    &lt;p&gt;Post Excerpt…&lt;/p&gt;
    &lt;p&gt;&lt;a href=""&gt;Read Full Article&lt;/a&gt;&lt;/p&gt;
&lt;/article&gt;

&lt;article&gt;
    &lt;h2&gt;Post Title&lt;/h2&gt;
    &lt;p&gt;Post Excerpt…&lt;/p&gt;
    &lt;p&gt;&lt;a href=""&gt;Read Full Article&lt;/a&gt;&lt;/p&gt;
&lt;/article&gt;</pre>
<p>I&#8217;ve done this myself many times, but in an ideally world the heading tags would run in sequence: h1, h2, h3, h4, h5 and h6. Generally I&#8217;ve not worried too much about this &#8211; especially now as with HTML5 we can use more than one heading tag per page so long as it&#8217;s wrapped in it&#8217;s own article tag &#8211; though I have no idea how google views&nbsp;this.</p>
<p>Updating some code this afternoon I decided to make the article tags run in turn of authority and its actually ridiculously&nbsp;easy.</p>
<pre>&lt;?php if (have_posts()) :
 $postCount = 0; ?&gt;
 &lt;?php while (have_posts()) : the_post();
 $postCount++; ?&gt;

                &lt;?php if ( $postCount &lt;= 6 ) { 
                    echo ('&lt;h'.$postCount.'&gt;');
                } else {
                    echo ('&lt;p class="article-heading"&gt;');
                } ?&gt;

&lt;?php the_title(); ?&gt;

                &lt;?php if ( $postCount &lt;= 6 ) { 
                    echo ('&lt;/h'.$postCount.'&gt;');
                } else {
                    echo ('&lt;/p&gt;');
                } ?&gt;
&lt;?php the_content('Read more'); ?&gt;
&lt;?php endwhile; ?&gt;
&lt;?php else : ?&gt;
 &lt;?php endif; ?&gt;</pre>
<p>All the code above does is count the post as they&#8217;re pulled from the database and use the appropriate heading tag ending up with a paragraph tag if we&#8217;re showing more than&nbsp;6.</p>
<p>Job done. Feel free to copy paste and use on your own&nbsp;sites.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/web-development/using-correct-post-heading-tags-on-wordpress-indexblog-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/web-development/using-correct-post-heading-tags-on-wordpress-indexblog-template/</feedburner:origLink></item>
		<item>
		<title>Different meta viewport tags for iPhone and iPad</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/g2w-mxVRPbk/</link>
		<comments>http://theboywhocriedfox.com/web-development/different-meta-viewport-tags-for-iphone-and-ipad/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:13:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[code snippets]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=855</guid>
		<description><![CDATA[Coding responsive designs I&#8217;ve often wanted to use the viewport meta tag for the iPhone but not for the iPad (or use it differently for the iPad) &#8211; today I stumbled across these iPad detection scripts by David&#160;Walsh. Using this we can serve a specific viewport meta tag for the iPad, as I&#8217;ve done&#160;below. &#60;?php [...]]]></description>
				<content:encoded><![CDATA[<p>Coding responsive designs I&#8217;ve often wanted to use the viewport meta tag for the iPhone but not for the iPad (<em>or use it differently for the iPad</em>) &#8211; today I stumbled across these <a href="http://davidwalsh.name/detect-ipad" target="_blank">iPad detection scripts by David&nbsp;Walsh</a>.</p>
<p>Using this we can serve a specific viewport meta tag for the iPad, as I&#8217;ve done&nbsp;below.</p>
<pre>&lt;?php $isiPad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');
if ( $isiPad ) { ?&gt;
&lt;?php // This is an iPad! ?&gt;
    &lt;meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1.0;"&gt;
&lt;?php    } else { ?&gt;
&lt;?php // Not an iPad ?&gt;
    &lt;meta name="viewport" content="width=device-width; initial-scale=0.65; maximum-scale=1.0;"&gt;
&lt;?php } ?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/web-development/different-meta-viewport-tags-for-iphone-and-ipad/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/web-development/different-meta-viewport-tags-for-iphone-and-ipad/</feedburner:origLink></item>
		<item>
		<title>Limiting time is limiting creativity</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/SFI0dcbfId4/</link>
		<comments>http://theboywhocriedfox.com/uncategorized/limiting-time-is-limiting-creativity/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 13:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=848</guid>
		<description><![CDATA[Absolute proof that by limiting time for a project you are limiting creativity.&#160; Do you want it now or do you want it&#160;great?]]></description>
				<content:encoded><![CDATA[<p>Absolute proof that by limiting time for a project you are limiting creativity.&nbsp;</p>
<p>Do you want it now or do you want it&nbsp;great?</p>
<p><iframe width="460" height="264" src="http://www.youtube.com/embed/jgvx9OfZKJw?rel=0" frameborder="0"&nbsp;allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/uncategorized/limiting-time-is-limiting-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/uncategorized/limiting-time-is-limiting-creativity/</feedburner:origLink></item>
		<item>
		<title>What ‘Responsive Web Design’ means to designers who can’t code.</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/1k29A-KNL44/</link>
		<comments>http://theboywhocriedfox.com/web-development/responsive-web-design-an-designers-who-cant-code/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 07:45:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=724</guid>
		<description><![CDATA[There&#8217;s been a lot of excitement and ho-ha about responsive web design recently and it seems to have been a major talking point at the conferences this&#160;year. Like many web designers and developers I&#8217;ve just started experimenting with RWD myself and honestly believe it&#8217;s the way forward now we have many screen sizes and devices [...]]]></description>
				<content:encoded><![CDATA[<p>There&#8217;s been a lot of excitement and <a href="http://www.lukejones.me/post/6651505197/responsive-web-design">ho-ha</a> about responsive web design recently and it seems to have been a major talking point at the conferences this&nbsp;year.</p>
<p>Like many web designers and developers I&#8217;ve just started experimenting with RWD myself and honestly believe it&#8217;s the way forward now we have many screen sizes and devices to cater&nbsp;for.</p>
<h2>What is Responsive Web Design</h2>
<p>For those of you who don&#8217;t already know &#8211; responsive web design essentially means coding a website to have a flexible layout which adjusts to suit screen widths and devices&nbsp;accordingly.</p>
<p>This is acheived using CSS media queries and techniques to present a varierty of image&nbsp;sizes.</p>
<p>You can see some great examples of Responsive Web Design in action by visiting one of the sites below or indeed this one (though still some tweaks to make) and resizing your browser&nbsp;window<sup>*</sup>.</p>
<p><a href="http://hicksdesign.co.uk/">Hicks Design</a> (One of the first examples I came across and still one of the best &#8211; check Jon&#8217;s <a href="http://hicksdesign.co.uk/journal/finally-a-fluid-hicksdesign">redesign blog post from June 2010</a>)<br />
<a href="http://csswizardry.com/">CSS Wizardry</a><br />
<a href="http://www.matthamm.com/">Matt Hamm</a><br />
<a href="http://dbushell.com/">David Bushell</a><br />
<a href="http://thirststudios.com/">Thirst Studios</a> (hot off the press!)</p>
<p>Hopefully you can see how usefull this can be in providing one website for all rather than directing to bespoke mobile sites which has been the previous&nbsp;trend.</p>
<h3>So what does this mean to designers who can&#8217;t code?</h3>
<p>Essentially I think it means&nbsp;this:</p>
<blockquote><p>Learn and learn&nbsp;fast.</p></blockquote>
<p>Responsive Web Design has made it more important than ever for web designers to understand&nbsp;code.</p>
<p>Without a basic understanding many &#8216;web designers&#8217; will be left behind as RWD becomes standard for website builds. It will mean more decisions and development time for the developer (who may not understand design) and likely lead to poor&nbsp;results.</p>
<p>Another issue will be how to present designs to clients and RWD makes a strong case for <a href="http://24ways.org/2009/make-your-mockup-in-markup">designing in the&nbsp;browser</a>.</p>
<p>Designing 3 or more different layouts in photoshop to present your client will not only be more time consuming but also potentially&nbsp;misleading.</p>
<p>Personally for sometime now I&#8217;ve favoured starting in photoshop then quickly moving to html/css before presenting to the client. An approach I&#8217;ll continue with responsive&nbsp;design.</p>
<p><em>Is it important for designers to be able to code?</em> I certainly think&nbsp;so.</p>
<h3>Resources</h3>
<p>For those of you wanting to learn more on Responsive Web Design here are some resources I think you&#8217;ll find&nbsp;useful.</p>
<p><a href="http://www.alistapart.com/articles/responsive-web-design/">A List Apart &#8211; Responsive Web Design<br />
</a><a href="http://www.abookapart.com/products/responsive-web-design">Responsive Web Design</a><br />
(Printed book &#8211; I&#8217;m yet to read but heard good reports)<br />
<a href="http://csswizardry.com/inuitcss/">inuit.css</a> (a great starting point for developers)<a href="http://css-tricks.com/9838-techniques-for-context-specific-images/"><br />
Techniques for Context Specific Images</a> (CSS Tricks)<br />
<a href="http://csswizardry.com/2011/06/fluid-grid-calculator/">Fluid Grid Calculator</a> (quickly and easily create a custom fluid grid)<br />
<a href="http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/">Guidelines for responsive webdesign</a> (Smashing Magazine)</p>
<p><sup>*</sup>provided you&#8217;re not browsing in Internet Explorer 6/7/8<sup>**</sup><br />
<sup>**</sup>Unless the developer has also used respond.js</p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/web-development/responsive-web-design-an-designers-who-cant-code/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/web-development/responsive-web-design-an-designers-who-cant-code/</feedburner:origLink></item>
		<item>
		<title>Elliott James @ the Living Room – Oxford</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/_FCl4uy6bSA/</link>
		<comments>http://theboywhocriedfox.com/whats-going-down/elliott-james-the-living-room-oxford/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 11:27:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[What's going down]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=796</guid>
		<description><![CDATA[Whilst *midly* intoxicated on Saturday afternoon I agreed to join Elliott in Oxford on Sunday night, not that I wouldn&#8217;t normally agree to see Elliott play, but Oxford is a fair trek for a Sunday Evening. I regretted this decision on Sunday morning when I woke up hungover with a 3ish hour round trip to [...]]]></description>
				<content:encoded><![CDATA[<p>Whilst *midly* intoxicated on Saturday afternoon I agreed to join Elliott in Oxford on Sunday night, not that I wouldn&#8217;t normally agree to see Elliott play, but Oxford is a fair trek for a Sunday Evening. I regretted this decision on Sunday morning when I woke up hungover with a 3<em>ish</em> hour round trip to drive in the evening. Still, that&#8217;ll teach&nbsp;me.</p>
<p>Elliott played well and I enjoyed the evening but the venue was a <em>little</em> on the quiet side &#8211; <em>where were you&nbsp;all</em>?</p>
<p>Anyway as I&#8217;m such a jolly nice chap I thought I&#8217;d share a couple of videos I took on the&nbsp;night.</p>
<p><iframe width="425" height="349" src="http://www.youtube.com/embed/lheugeQweaI" frameborder="0"&nbsp;allowfullscreen></iframe></p>
<p><iframe width="425" height="349" src="http://www.youtube.com/embed/oCtNTXxslFU" frameborder="0"&nbsp;allowfullscreen></iframe></p>
<p><iframe width="425" height="349" src="http://www.youtube.com/embed/qvHLEbslGoQ" frameborder="0"&nbsp;allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/whats-going-down/elliott-james-the-living-room-oxford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/whats-going-down/elliott-james-the-living-room-oxford/</feedburner:origLink></item>
		<item>
		<title>Be yourself</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/Oh02a89EBfo/</link>
		<comments>http://theboywhocriedfox.com/my-work/be-yourself/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 01:10:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[My Work]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=777</guid>
		<description><![CDATA[If there&#8217;s one thing I&#8217;ve learn&#8217;t since I&#8217;ve matured*, my career developed, taken risks, worked for &#8216;myself&#8217; &#8211; it&#8217;s&#160;this: Be&#160;yourself Show your personality through your approach, your work, in your website, your stationary, your dress code and manner in meetings, proposals and all things to do with your business &#8211; be relaxed and be&#160;yourself. Don&#8217;t [...]]]></description>
				<content:encoded><![CDATA[<p>If there&#8217;s one thing I&#8217;ve learn&#8217;t since I&#8217;ve matured<sup>*</sup>, my career developed, taken risks, worked for &#8216;myself&#8217; &#8211; it&#8217;s&nbsp;this:</p>
<blockquote><p>Be&nbsp;yourself</p></blockquote>
<p>Show your personality through your approach, your work, in your website, your stationary, your dress code and manner in meetings, proposals and all things to do with your business &#8211; be relaxed and be&nbsp;yourself.</p>
<p>Don&#8217;t pretend to be a big company if you&#8217;re a one man band, be honest and have confidence in what you do. Present yourself in a way in which you feel&nbsp;comfortable.</p>
<p>Some clients won&#8217;t even notice, some might not like you, others will really appreciate you. One things for sure &#8211; the average company, freelancer, contractor are a thousand a penny. Who wants to be average? not&nbsp;me.</p>
<p>Present your personality, present your ideas and what you are passionate about. If the client doesn&#8217;t like it, that&#8217;s cool &#8211; joe blogs design is just around the&nbsp;corner.</p>
<p>Below is a scan of the front of my business&nbsp;card:</p>
<p><img class="alignleft size-medium wp-image-778" title="bc" src="http://theboywhocriedfox.com/tbwcf/wp-content/uploads/2011/07/bc-203x300.jpg" alt="" width="203" height="300"&nbsp;/></p>
<p>Just this evening I met a new client &#8211; had a great meeting, passed him my card &#8211; I was still talking when I realised he was half listening though a little busy looking at my card. I shut up, he looked up, smiled and&nbsp;said:</p>
<blockquote><p>That&#8217;s brave, I like&nbsp;that.</p></blockquote>
<p>I designed those business cards roughly 2 years ago and think nothing of them really, but guess I am making a bit of a statement. It doesn&#8217;t matter that I&#8217;m a designer, a developer  - I&#8217;d want to work with a nice&nbsp;bloke.</p>
<p>People do business with&nbsp;people.</p>
<p><sup>*</sup> Still working on&nbsp;that.</p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/my-work/be-yourself/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/my-work/be-yourself/</feedburner:origLink></item>
		<item>
		<title>Animated transitions with Media Queries</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/La_YCMT7Fgs/</link>
		<comments>http://theboywhocriedfox.com/web-development/animated-transitions-with-media-queries/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 11:25:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=748</guid>
		<description><![CDATA[I discovered something cool!  ( demo &#124; video&#160;) At least I didn&#8217;t know about it until now &#8211; maybe you all knew already and no-one told me &#8211; why the&#160;secrets? I was thinking about CSS transitions and wondered if they would work within the media-queries in your stylesheet. So I tried it out and guess [...]]]></description>
				<content:encoded><![CDATA[<p>I discovered something cool!  ( <a href="http://theboywhocriedfox.com/demo/animate-transitions-with-media-queries/">demo</a> | <a href="http://theboywhocriedfox.com/tbwcf/wp-content/uploads/2011/07/ISUHD18.mov">video</a>&nbsp;)</p>
<p>At least I didn&#8217;t know about it until now &#8211; <em>maybe you all knew already and no-one told m</em>e &#8211; why the&nbsp;secrets?</p>
<p>I was thinking about CSS transitions and wondered if they would work within the media-queries in your stylesheet. So I tried it out and guess what. It&nbsp;worked!</p>
<blockquote><p>Now in our responsive web designs we can also animate the layout changes when a user resizes the browser window, no more rezise, snap, resize,&nbsp;snap.</p></blockquote>
<p>I tested in Chrome, Firefox 4, Safari 5 and Opera 11 &#8211; it worked in all but best in&nbsp;Chrome.</p>
<p>All we need to do is add the appropriate CSS to the elements which change width, height etc in each declaration of that property (anywhere the width &amp; height change in the&nbsp;media-queries).</p>
<pre>/* webkit */
-webkit-animation-property: -webkit-width;
-webkit-animation-property: -webkit-height;
-webkit-transition-duration: 1s;

/* firefox 4+ */
<del>-moz-animation-property: -webkit-width;
-moz-animation-property: -webkit-height;</del>
-moz-transition-duration: 1s; 

/* Opera */
<del>-o-animation-property: -webkit-width;
-o-animation-property: -webkit-height;</del>
 -o-transition-duration: 1s;</pre>
<p>I <a href="http://theboywhocriedfox.com/demo/animate-transitions-with-media-queries/">uploaded a demo</a> and a <a href="http://theboywhocriedfox.com/tbwcf/wp-content/uploads/2011/07/ISUHD18.mov">video of it in action</a> (just incase you&#8217;re unlucky enough to use a non supporting&nbsp;browser).</p>
<p>EDIT:<br />
In my haste I had used : -webkit-width  &amp;  -webkit-height in my CSS for Firefox and Opera which is incorrect. However, it still worked:</p>
<blockquote><p>… this is because you can literally just have a transition duration and it will transition everything (colour etc)&nbsp;automatically.</p></blockquote>
<p>Thanks for pointing that out<a href="http://csswizardry.com/">&nbsp;Harry</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/web-development/animated-transitions-with-media-queries/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
<enclosure url="http://theboywhocriedfox.com/tbwcf/wp-content/uploads/2011/07/ISUHD18.mov" length="2316100" type="video/quicktime" />
		<feedburner:origLink>http://theboywhocriedfox.com/web-development/animated-transitions-with-media-queries/</feedburner:origLink></item>
		<item>
		<title>You should attend the next Web Meet Guildford.</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/THkHWBfALyU/</link>
		<comments>http://theboywhocriedfox.com/whats-going-down/you-should-attend-the-next-web-meet-guildford/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 07:45:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[What's going down]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=698</guid>
		<description><![CDATA[A week ago today I attended the bi-monthly Web Meet&#160;Guildford. For those of you who don&#8217;t&#160;know: Web Meet Guildford, aka WMG, aka #WMG was started by Kyanmedia back in November 2010 to bring together people in the web industry in Guildford and surrounding areas for an informal get together to discuss all things &#8216;web&#8217; over [...]]]></description>
				<content:encoded><![CDATA[<p>A week ago today I attended the bi-monthly Web Meet&nbsp;Guildford.</p>
<p><a href="http://webmeetguildford.co.uk/"><img class="size-full wp-image-710" title="Web Meet Guildford" src="http://theboywhocriedfox.com/tbwcf/wp-content/uploads/2011/06/Screen-shot-2011-06-29-at-21.48.25.jpg" alt="Web Meet Guildford Website" width="600" height="388"&nbsp;/></a></p>
<p>For those of you who don&#8217;t&nbsp;know:</p>
<blockquote><p><a title="Web Meet Guildford" href="http://webmeetguildford.co.uk/">Web Meet Guildford</a>, aka WMG, aka #WMG was started by <a title="Kyan Media" href="http://kyanmedia.com/">Kyanmedia</a> back in November 2010 to bring together people in the web industry in Guildford and surrounding areas for an informal get together to discuss all things &#8216;web&#8217; over a beer or&nbsp;two.</p>
<p>Typically we meet every 8 weeks or so at the Three Pigeons pub at the top of Guildford High Street, we take over the top floor and there’s a tab behind the bar &#8211; so there’s an excuse to come and say&nbsp;hello.</p></blockquote>
<p>Although I&#8217;d intended to visit the previous two meets this was my first. I must admit I was a little apprehensive not knowing anyone &#8211; <em>bar a few people I *kind-of* knew through twitter</em> &#8211; but hey, there&#8217;s only one way to get to know people&nbsp;right?</p>
<p>Within a few minutes of arriving both conversation and real ale were flowing which continued throughout the&nbsp;evening.</p>
<p>I found everyone welcoming, met some very cool fellow &#8216;web folk&#8217; and enjoyed the evening very&nbsp;much.</p>
<p>If you work in the interweb around the Guildford area you should definitely pop along next time, which I imagine will be late August<sup>*</sup>. See you&nbsp;there!</p>
<p><sup>*</sup> Keep an eye on <a title="Web Meet Guildford" href="http://webmeetguildford.co.uk/">Web Meet Guildford</a> for the date &#8211; or <a href="http://webmeetguildford.co.uk/#freelancers">follow the lot of us on&nbsp;twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/whats-going-down/you-should-attend-the-next-web-meet-guildford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/whats-going-down/you-should-attend-the-next-web-meet-guildford/</feedburner:origLink></item>
		<item>
		<title>xheight blog</title>
		<link>http://feedproxy.google.com/~r/TheBoyWhoCriedFox/~3/1OlfghSk5Yk/</link>
		<comments>http://theboywhocriedfox.com/whats-going-down/xheight-blog/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 07:00:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[What's going down]]></category>

		<guid isPermaLink="false">http://theboywhocriedfox.com/?p=671</guid>
		<description><![CDATA[What seems like yesterday but is actually now 3 months ago David Bushell dropped me an email to ask if I&#8217;d like to contribute to a new blog he was preparing to launch called xheight. Simply&#160;put: &#8220;xheight is a blog about ideas and&#160;thoughts.&#8220; David&#8217;s idea was for a selection of professional designers to contribute their [...]]]></description>
				<content:encoded><![CDATA[<p>What seems like yesterday but is actually now 3 months ago <a href="http://dbushell.com/">David Bushell</a> dropped me an email to ask if I&#8217;d like to contribute to a new blog he was preparing to launch called <a&nbsp;href="http://xheight.co.uk/">xheight</a>.</p>
<p>Simply&nbsp;put:</p>
<blockquote><p>&#8220;<a href="http://xheight.co.uk/about/">xheight is a blog about ideas and&nbsp;thoughts.</a>&#8220;</p></blockquote>
<p>David&#8217;s idea was for a selection of professional designers to contribute their thoughts on design, share their day-to-day theories, experiences and&nbsp;ideas.</p>
<p>Brief #1 was &#8220;what design means to you&#8221; after a few nights waking up at 3am with inspiration I felt that I had some interesting opinions and thoughts to&nbsp;share.</p>
<p>My first and (so far) only article &#8220;<a href="http://xheight.co.uk/2011/05/03/design-is-not-art/">Design is not art</a>&#8221; was published on May&nbsp;3rd.</p>
<p>I&#8217;ve been extremely impressed with the articles submitted to x-height so far and humbled to sit alongside such a <a href="http://xheight.co.uk/authors/">talented group of designers</a> as a&nbsp;contributor.</p>
<p><img class="alignleft size-full wp-image-681" title="xheight – ideas on design" src="http://theboywhocriedfox.com/tbwcf/wp-content/uploads/2011/06/xheight-–-ideas-on-design1.png" alt="" width="562" height="719"&nbsp;/></p>
]]></content:encoded>
			<wfw:commentRss>http://theboywhocriedfox.com/whats-going-down/xheight-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://theboywhocriedfox.com/whats-going-down/xheight-blog/</feedburner:origLink></item>
	</channel>
</rss>
