<?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>Theo Stråhlén &#187; thexv</title>
	<atom:link href="http://theodesign.se/tag/thexv/feed/" rel="self" type="application/rss+xml" />
	<link>http://theodesign.se</link>
	<description>The blog and portfolio of Theo Stråhlén. Currently a student at Hyper Island.</description>
	<lastBuildDate>Thu, 27 Jan 2011 21:05:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>jQuery OSX Looking Dock</title>
		<link>http://theodesign.se/jquery-osx-looking-dock/</link>
		<comments>http://theodesign.se/jquery-osx-looking-dock/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 10:55:18 +0000</pubDate>
		<dc:creator>theo</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[jqdock]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[thexv]]></category>

		<guid isPermaLink="false">http://theodesign.se/?p=129</guid>
		<description><![CDATA[I am very interested of what jQuery can do and the plugins there is keeps impressing me. I saw the world cup site Twitter did and at the top they were using some kind of dock with the flags of &#8230; <a href="http://theodesign.se/jquery-osx-looking-dock/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://theodesign.se/jquery-osx-looking-dock"><img class="alignnone size-full wp-image-130" title="dock_pic" src="http://theodesign.se/wp-content/uploads/2010/06/dock_pic.jpg" alt="" width="660" height="234" /></a></p>
<p>I am very interested of what jQuery can do and the plugins there is keeps impressing me. I saw the <a href="http://twitter.com/worldcup" target="_blank">world cup site Twitter </a>did and at the top they were using some kind of dock with the flags of the teams. When I and Henrik Porseland were coding whatisxv.com we wanted a dock with students but the time ran out and we forgot about it.</p>
<p>But now I found <a href="http://www.wizzud.com/jqDock/" target="_blank">jqDock</a>! It&#8217;s very easy to use and i will show a very simple example here. You can do both horizontal and vertical dock menus and custom the looks of it very very easy. As I said before I wanted a dock menu with all the students in my class.<span id="more-129"></span></p>
<p><a href="http://whatisxv.com/html/dock.php" target="_blank">Take a look a the Demo I did</a></p>
<p>This is how I did it:<br />
First of all to use this wonderful plugin you need jQuery v1.2.3 or later. And then you can download the plugin <a href="http://www.wizzud.com/component/option,com_remository/Itemid,27/func,fileinfo/filecatid,64/parent,category/" target="_blank">here</a>.</p>
<p>Start with link the files in your &lt;head&gt; tag. Link in the jqDock source (full or compressed) after jQuery itself as in the example below:</p>
<pre>&lt;script type='text/javascript' src='jquery-1.2.3.min.js'&gt;&lt;/script&gt;
&lt;script type='text/javascript' src='jquery.jqDock.js'&gt;&lt;/script&gt;</pre>
<p>Create a div and put an ID or Class on it. Then fill it with images that you want in your dock menu. In my example:</p>
<pre>&lt;div id="dockmenu"&gt;
...
&lt;a href="#"&gt;&lt;img src="img/student.jpg" title="Student Name" alt="Student Name" /&gt;&lt;/a&gt;
&lt;a href="#"&gt;&lt;img src="img/student.jpg" title="Student Name" alt="Student Name" /&gt;&lt;/a&gt;
&lt;a href="#"&gt;&lt;img src="img/student.jpg" title="Student Name" alt="Student Name" /&gt;&lt;/a&gt;
...
&lt;/div&gt;</pre>
<p>To convert your HTML into a Dock, simply call the jqDock function.</p>
<pre>&lt;script type="text/javascript"&gt;
$(document).ready(function($)  {
	$('#dockmenu').jqDock({align:'bottom', size:65, labels:true});
});
&lt;/script&gt;</pre>
<p>This code will make the menu expand from the bottom and up and every picture will have a label on it. You can see it in my <a href="http://whatisxv.com/html/dock.php" target="_blank">example</a>.</p>
<p>It&#8217;s very easy to style your dock menu as well. Here is the CSS for my menu:</p>
<pre>div.jqDockWrap{margin:0 auto;}

div.jqDockLabel {color:#fff;background:#000; font-family:Myriad Pro; padding:4px;
font-size:11px;font-weight:normal;margin-top:-25px!important;white-space:nowrap;}

div.jqDockLabel a, a:hover, a:visited{color:#FFF; text-decoration:none;}

#dockmenu{clear:both;display:block;width:100%;position:absolute;text-align:center;
left:0; bottom:0px;}

#dockmenu img{padding:1px;float:left;display:block;}</pre>
<p>Good Luck creating your own dock menu with <a href="http://www.wizzud.com/jqDock/" target="_blank">jqDock</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://theodesign.se/jquery-osx-looking-dock/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Invite site for XV</title>
		<link>http://theodesign.se/invite-site-for-xv/</link>
		<comments>http://theodesign.se/invite-site-for-xv/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 09:51:37 +0000</pubDate>
		<dc:creator>theo</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[hyper island]]></category>
		<category><![CDATA[industry]]></category>
		<category><![CDATA[invite]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thexv]]></category>

		<guid isPermaLink="false">http://theodesign.se/?p=105</guid>
		<description><![CDATA[Visit site: http://invite.whatisxv.com For our class website we wanted to create a hype around it. We did secret sendouts to people in the digital industry with actual letters. It was a big secret and we wanted people to start talk &#8230; <a href="http://theodesign.se/invite-site-for-xv/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://theodesign.se/invite-site-for-xv"><img class="alignnone size-full wp-image-106" title="invite_1" src="http://theodesign.se/wp-content/uploads/2010/06/invite_1.jpg" alt="Invite site" width="660" height="300" /></a></p>
<p>Visit site: <a href="http://invite.whatisxv.com" target="_blank">http://invite.whatisxv.com</a></p>
<p>For our class website we wanted to create a hype around it. We did secret sendouts to people in the digital industry with actual letters. It was a big secret and we wanted people to start talk about it. I wouldn&#8217;t say it was a huge success but people started talking. <span id="more-105"></span></p>
<p>In the third letter it was a link to our website and a password. When the user logged in with their personal password the logo of their company lighted up. You could also see other agencies that visited our site since their logo was lighted up.</p>
<p><strong>My role</strong><br />
This was a part of the Marketing and promotion module so the whole class was idea developing. Me and a small group finalized then the idea. I was then one of the two developers of the site. Me and <a href="http://porseland.com" target="_blank">Henrik Porseland</a> did all the Flash and I did all the back-end for it. <a href="http://johnkarlsson.se" target="_blank">John Karlsson</a> and <a href="http://gardenberg.se" target="_blank">Alexander Gårdenberg</a> was the designers for this site as well. This site was online for a month and the 15th of May we released our <a href="http://theodesign.se/what-is-xv/" target="_self">student directory</a> with a great party at Sid Lee in Amsterdam.</p>
<p><a href="http://invite.whatisxv.com" target="_blank">Check out the invite site here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://theodesign.se/invite-site-for-xv/feed/</wfw:commentRss>
		<slash:comments>160</slash:comments>
		</item>
		<item>
		<title>What is XV</title>
		<link>http://theodesign.se/what-is-xv/</link>
		<comments>http://theodesign.se/what-is-xv/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 09:00:44 +0000</pubDate>
		<dc:creator>theo</dc:creator>
				<category><![CDATA[Hyper Island]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[group dynamics]]></category>
		<category><![CDATA[hyper island]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thexv]]></category>
		<category><![CDATA[whatisxv]]></category>

		<guid isPermaLink="false">http://theodesign.se/?p=80</guid>
		<description><![CDATA[Visit Site: http://whatisxv.com This is our student directory from my class at Hyper Island, Karlskrona. We did this site during the Marketing and promotion module and the purpose of it is to promote us as students and learn how to &#8230; <a href="http://theodesign.se/what-is-xv/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://theodesign.se/what-is-xv/"><img class="alignnone size-full wp-image-81" title="test_blog_pix" src="http://theodesign.se/wp-content/uploads/2010/06/test_blog_pix.jpg" alt="whatisxv.com" width="660" height="300" /></a></p>
<p><strong>Visit Site: <a title="whatisxv" href="http://whatisxv.com" target="_blank">http://whatisxv.com</a></strong></p>
<p>This is our student directory from my class at Hyper Island, Karlskrona. We did this site during the Marketing and promotion module and the purpose of it is to promote us as students and learn how to work with the whole group of 36 students.<span id="more-80"></span></p>
<p><strong>What is XV?</strong><br />
XV means 15 in roman letters.</p>
<p>Three years ago Hyper Island went from the numbered crew concept to labeling classes with abbreviations, ordered by completion year and location. This ended a fine tradition. A tradition in which we would have been the 15th crew, instead of our current label DM11KNA, Digital Media 11 Karlskrona.<br />
We felt that the crew tradition carried a great brand value and we wanted to rebrand the crew concept and salvage some of the value, so we created the secret Hyper Island Order and the 15th Chapter.</p>
<p><strong>Process</strong><br />
This project was a huge one with 36 guys involved, many ideas and thoughts at the same time, do&#8217;s and dont&#8217;s &amp; pros and cons.<br />
The whole class become later divided in to different groups.</p>
<p>- Documentation<br />
- Invite letters<br />
- Invite video<br />
- Finance<br />
- Photo<br />
- Web production</p>
<p><strong>My role</strong><br />
My role in the XV project was developer.<br />
I was involved in the whole idea development phase as well. Me and a small group of people finalized the idea of the website.<br />
In production we were only four guys working on the website. The designers; <a title="Alexander Gårdenberg Portfolio" href="http://gardenberg.se" target="_blank">Alexander Gårdenberg</a> and <a title="John Karlsson Portfolio" href="http://johnkarlsson.se" target="_blank">John Karlsson</a> and the developers, me and <a title="Henrik Porseland Portfolio" href="http://porseland.com" target="_blank">Henrik Porseland</a>. We did it all in Flash first, but since all the hype around the iPad I decided to create a HTML/Javascript version of it as well. I was also responsible for the back-end of the site. I did a small CMS for the site and connected it to the flash and html version.</p>
<p>I&#8217;m happy with the final result and I learnt a lot during this module. A lot of AS3, Javascript and of course group dynamics.</p>
<p>Hope you enjoy the site!</p>
<p><a title="What is XV?" href="http://whatisxv.com/html" target="_blank">Link to HTML version</a></p>
<p><a title="What Is XV?" href="http://whatisxv.com/flash" target="_blank">Link to Flash version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://theodesign.se/what-is-xv/feed/</wfw:commentRss>
		<slash:comments>326</slash:comments>
		</item>
	</channel>
</rss>

