<?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>BOHUCO.NET &#187; CSS</title>
	<atom:link href="http://bohuco.net/blog/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://bohuco.net/blog</link>
	<description>Die Sollbruchstelle des Internets.</description>
	<lastBuildDate>Mon, 30 Apr 2012 10:30:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>6 Simple Tricks to Make Your Page More Accessible (WAI, WCAG)</title>
		<link>http://bohuco.net/blog/2010/07/6-simple-tricks-to-make-your-page-more-accessible-wai-wcag/</link>
		<comments>http://bohuco.net/blog/2010/07/6-simple-tricks-to-make-your-page-more-accessible-wai-wcag/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 12:20:40 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[templating]]></category>
		<category><![CDATA[wai]]></category>
		<category><![CDATA[wcag]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=1415</guid>
		<description><![CDATA[Screen readers are really cool pieces of software, but as a web-developer you should help the screen reader to handle your webpages better for the blind users. Besides you add more text content to your pages, and search engines loves text content. Here some really simple tricks: &#60;map title=&#8221;My favorite links&#8221;&#62; The &#60;map&#62; tag is [...]]]></description>
			<content:encoded><![CDATA[<p>Screen readers are really cool pieces of software, but as a web-developer you should help the screen reader to handle your webpages better for the blind users. Besides you add more text content to your pages, and search engines loves text content.<br />
<span id="more-1415"></span></p>
<p>Here some really simple tricks:</p>
<p><strong>&lt;map title=&#8221;My favorite links&#8221;&gt;<br />
</strong>The &lt;map&gt; tag is not only for imagemaps, you should use it to group link-lists. In the title-attribute you have to write a description for the elements within the map. Screen readers can now readout the description, so blind people can decide if they want hear the list.</p>
<p><a href="http://www.w3.org/TR/WCAG20-TECHS/html.html#H50">WCAG Techniques &#8211; Link Blocks</a></p>
<p><strong><br />
&lt;abbr title=&#8221;What the fuck&#8221;&gt;WTF&lt;/abbr&gt;</strong><br />
With the &lt;abbr&gt; tag you can markup abbreviations for screen readers, maybe search engines can use this additional data too.</p>
<p><a href="http://www.w3.org/TR/WCAG20-TECHS/html.html#H28">WCAG Techniques &#8211; Abbreviations</a></p>
<p><strong>&lt;hr /&gt;</strong><br />
Use the oldschool horizontal ruler for your document structure, you can style it with css or hide it from non-blind users. Screen readers use it to tell users if there is a new content block.</p>
<p><strong>Skip Links</strong><br />
With a &#8220;Skip to content&#8221;-Link, blind users can fast jump to the main content section. If you don&#8217;t provide such links screen readers must read always the main/sub-menu of your pages. You can hide the skip-links with css.</p>
<p><strong>accesskey=&#8221;9&#8243;﻿</strong><br />
Provide access key attribute, so blind users can faster navigate through your pages. You should add an access key to every main-menu point.</p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2010/07/6-simple-tricks-to-make-your-page-more-accessible-wai-wcag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 &#8211; Transform/Transition/Animation</title>
		<link>http://bohuco.net/blog/2010/02/css3-transformtransitionanimation/</link>
		<comments>http://bohuco.net/blog/2010/02/css3-transformtransitionanimation/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 19:38:44 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=1336</guid>
		<description><![CDATA[Transformationen Mit Transformationen kann man Elemente drehen, verschieben und skalieren. Transformationen funktionieren in Chrome (Beta), Safari und Firefox 3.6. 1 2 3 4 #test1 &#123; -webkit-transform: translate&#40;80px, 0&#41; rotate&#40;-65deg&#41; scale&#40;1.5&#41;; -moz-transform: translate&#40;80px, 0&#41; rotate&#40;-65deg&#41; scale&#40;1.5&#41;; &#125; Transitions Mit CSS-Transitions lassen sich flüssig animierte Übergänge zwischen zwei CSS-Angaben machen. Brauchbar für einfache Animationen, Farbübergänge (Hover-Effekte) usw. [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-1336"></span><br />
<strong>Transformationen</strong></p>
<p>Mit Transformationen kann man Elemente drehen, verschieben und skalieren. Transformationen funktionieren in Chrome (Beta), Safari und Firefox 3.6.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#test1</span> <span style="color: #00AA00;">&#123;</span>
	-webkit-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #933;">80px</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>-65deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1.5</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	-moz-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #933;">80px</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>-65deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1.5</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><strong>Transitions</strong></p>
<p>Mit CSS-Transitions lassen sich flüssig animierte Übergänge zwischen zwei CSS-Angaben machen. Brauchbar für einfache Animationen, Farbübergänge (Hover-Effekte) usw. Transitions funktionieren derzeit nur mit Webkit, die nächste Version von Firefox wird auch Transitions unterstützen.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#test7</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#eee</span><span style="color: #00AA00;">;</span>
	-webkit-transition<span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">background</span> 2s<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#test7</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">lime</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><strong>Animationen</strong></p>
<p>Für komplexere Abläufe können in Zukunft auch Keyframe-Animationen definiert werden. Jede Animation bekommt einen eindeutigen Namen der via animation-Eigenschaft getriggert werden kann.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#test5</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
	-webkit-animation<span style="color: #00AA00;">:</span> <span style="color: #ff0000;">'wobble'</span> 5s<span style="color: #00AA00;">;</span>
	-webkit-animation-iteration-count<span style="color: #00AA00;">:</span> infinite<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>		
<span style="color: #a1a100;">@-webkit-keyframes 'wobble' {</span>
	<span style="color: #933;">0%</span> <span style="color: #00AA00;">&#123;</span> -webkit-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>10deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
	<span style="color: #933;">25%</span> <span style="color: #00AA00;">&#123;</span> -webkit-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>-10deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1.3</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
	<span style="color: #933;">50%</span> <span style="color: #00AA00;">&#123;</span> -webkit-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>10deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
	<span style="color: #933;">75%</span> <span style="color: #00AA00;">&#123;</span> -webkit-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>-10deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0.7</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>	
	<span style="color: #933;">100%</span> <span style="color: #00AA00;">&#123;</span> -webkit-transform<span style="color: #00AA00;">:</span> translate<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span> rotate<span style="color: #00AA00;">&#40;</span>10deg<span style="color: #00AA00;">&#41;</span> scale<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Alle <a href="http://bohuco.net/dev/css/"><b>Beispiele ansehen</b></a>, am Besten mit Chrome (Beta) oder Safari.<br />
<br /><a href="http://vision-media.ca/resources/css/css-transformations-animations-and-transitions-examples">mehr Infos und Tutorials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2010/02/css3-transformtransitionanimation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IE6 PNG Fix</title>
		<link>http://bohuco.net/blog/2008/08/ie6-png-fix/</link>
		<comments>http://bohuco.net/blog/2008/08/ie6-png-fix/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 18:54:42 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[PNG]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=387</guid>
		<description><![CDATA[Beim CSSGirl wird ein neuer PNG Fix vorgestellt, ich werd ihn nicht gleich ausprobieren aber er scheint wohl besser zu sein als das was es bisher gegeben hat. Es wird SuperSlight mit dem neuen Unit PNG Fix verglichen und jeder hat seine Vor- und Nachteile aber der Unit PNG Fix hat dann doch die Nase [...]]]></description>
			<content:encoded><![CDATA[<p>Beim <a href="http://www.cssgirl.com/resources/2008/08/09/ie6-png-fixes-supersleight-unit-png-fix/#more-313">CSSGirl</a> wird ein neuer PNG Fix vorgestellt, ich werd ihn nicht gleich ausprobieren aber er scheint wohl besser zu sein als das was es bisher gegeben hat. Es wird <a href="http://24ways.org/2007/supersleight-transparent-png-in-ie6">SuperSlight</a> mit dem neuen <a href="http://labs.unitinteractive.com/unitpngfix.php">Unit PNG Fix</a> verglichen und jeder hat seine Vor- und Nachteile aber der Unit PNG Fix hat dann doch die Nase vorn.</p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2008/08/ie6-png-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Links for CSS and Javascript</title>
		<link>http://bohuco.net/blog/2008/02/some-links-for-css-and-javascript/</link>
		<comments>http://bohuco.net/blog/2008/02/some-links-for-css-and-javascript/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 21:53:40 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Bookmark]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Selection]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=126</guid>
		<description><![CDATA[Wieder mal ein Feature das sicher keiner brauch. Aber wenn dich eine nette Grafikerin fragt, kannst auch nicht einfach &#8220;so a schaaas&#8221; sagen. Selection Background Color via CSS ändern Und gleich noch einer &#8230; den werd ich demnext sorgar noch wo verwenden müssen, man kann ja nicht erwarten das die User die Browserfunktionen nützen können [...]]]></description>
			<content:encoded><![CDATA[<p>Wieder mal ein Feature das sicher keiner brauch. Aber wenn dich eine nette Grafikerin fragt, kannst auch nicht einfach &#8220;so a schaaas&#8221; sagen.</p>
<p><a href="http://davidwalsh.name/csstricks-css-text-selection-highlighting/">Selection Background Color via CSS ändern</a></p>
<p>Und gleich noch einer &#8230; den werd ich demnext sorgar noch wo verwenden müssen, man kann ja nicht erwarten das die User die Browserfunktionen nützen können ???</p>
<p><a href="http://davidwalsh.name/change-text-size-onclick-with-javascript/">Textgröße mittels Javascript ändern</a></p>
<p>Gleich mal merken für die Zukunft &#8230;</p>
<p><a href="http://css.dzone.com/news/multiple-backgrounds-oh-what-beautiful-thing">Mehrere Hintergrundbilder mittels CSS3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2008/02/some-links-for-css-and-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7.js in neuer Beta-Version und base2</title>
		<link>http://bohuco.net/blog/2008/01/ie7js-in-neuer-beta-version/</link>
		<comments>http://bohuco.net/blog/2008/01/ie7js-in-neuer-beta-version/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 09:21:59 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Bookmark]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[base2]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[MSIE]]></category>
		<category><![CDATA[PNG]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=108</guid>
		<description><![CDATA[Dean Edwards hat eine neue Beta-Version seiner Javascript Library veröffentlicht. Kurzbeschreibung: &#8220;IE7 is a JavaScript library to make MSIE behave like a standards-compliant browser. It fixes many CSSPNG work correctly under IE5 and IE6. issues and makes transparent &#8220;. Funktions-Übersicht und Demos base2 ist eine Library die Javascript um einige Funktionen erweitert und versucht die [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dean.edwards.name/">Dean Edwards</a> hat eine <a href="http://dean.edwards.name/weblog/2008/01/ie7-2/">neue Beta-Version</a> seiner <a href="http://dean.edwards.name/IE7/">Javascript Library</a> veröffentlicht.</p>
<p><span id="more-108"></span>Kurzbeschreibung: &#8220;<em>IE7 is a JavaScript library to make <abbr title="Microsoft Internet Explorer">MSIE</abbr>     behave like a standards-compliant browser. It fixes many     <abbr title="Cascading Style Sheets">CSS</abbr><abbr title="Portable Network Graphics (format)">PNG</abbr> work correctly under     <abbr>IE5</abbr> and <abbr>IE6</abbr>.</em> issues and makes transparent     &#8220;.</p>
<p><a href="http://ie7-js.googlecode.com/svn/test/index.html">Funktions-Übersicht und Demos</a></p>
<p><a href="http://code.google.com/p/base2/">base2</a> ist eine Library die Javascript um einige Funktionen erweitert und versucht die Konsistenz zwischen den einzelnen Browser Implementierungen zu verbessern. In der <a href="http://dean.edwards.name/weblog/2007/12/base2-intro/">base2 Einführung</a> wird alles genau erklärt.</p>
<p>Kurzbeschreibung: &#8220;<em>base2 is a lightweight library that irons out all the annoying differences in JavaScript implementations. It provides the additional functionality from JavaScript 1.6+ that only Mozilla browsers implement. It also adds some features from ES4. The library is only 6KB (gzipped).</em>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2008/01/ie7js-in-neuer-beta-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miss Hie extracted</title>
		<link>http://bohuco.net/blog/2008/01/miss-hie-extracted/</link>
		<comments>http://bohuco.net/blog/2008/01/miss-hie-extracted/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 01:41:20 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Bookmark]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Comics]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Übersetzung]]></category>
		<category><![CDATA[Webcomics]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=86</guid>
		<description><![CDATA[Melissa Hie hat da eine wirklich tolle Seite fabriziert. Aber neben den Javascript Effekten sind auch einige Inhalte interessant &#8230; &#8220;My all time favorite is The X-Files, which I have been watching literally half my life! Other honorable mentions are Battlestar Galactica and House MD&#8220;. &#8211; yeah &#8230; I want to believe Mulder. &#8220;I also [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://melissahie.com/">Melissa Hie</a> hat da eine wirklich tolle Seite fabriziert. Aber neben den Javascript Effekten sind auch einige Inhalte interessant &#8230;</p>
<p><span id="more-86"></span></p>
<p>&#8220;<em>My all time favorite is <a href="http://en.wikipedia.org/wiki/The_X-Files">The X-Files</a>, which I have been watching literally half my life! Other honorable mentions are Battlestar Galactica and House MD</em>&#8220;. &#8211; yeah &#8230; I want to believe Mulder.</p>
<p>&#8220;<em>I also enjoy reading books, but I like webcomics even better! My favorite comics are <a href="http://www.xkcd.com/">XKCD</a> and <a href="http://www.pbfcomics.com/">The Perry Bible Fellowship</a>.</em>&#8221; &#8211; BestOf: <a href="http://www.pbfcomics.com/?cid=PBF238-Capital_Punishment.jpg">01</a>, <a href="http://www.pbfcomics.com/?cid=PBF236-Road_Test.gif">02</a>, <a href="http://www.pbfcomics.com/?cid=PBF234-Finneas.jpg">03</a>, <a href="http://www.pbfcomics.com/?cid=PBF217-Magic_Eyes.gif">04</a>, <a href="http://xkcd.com/312/">05</a>, <a href="http://xkcd.com/338/">06</a>, <a href="http://xkcd.com/338/"></a><a href="http://xkcd.com/256/">07</a></p>
<p>&#8220;<em>Comfortable with hand-coding (X)HTML and CSS from scratch</em>&#8221; &#8211; Gibt&#8217;s da eine geile deutsche Übersetzung? &#8220;sich wohlfühlen bei&#8221;, &#8220;Von Grund auf&#8221;, &#8220;ganz von vorne&#8221;, &#8220;hand-crafted&#8221;, &#8220;handgefertigt&#8221;, &#8220;von Hand gefertigt&#8221;</p>
<p>&#8220;<em>fast learner</em>&#8221; &#8211; ist das &#8220;scharfe Auffassungsgabe&#8221;, &#8220;guter Schüler&#8221;, &#8220;helles Köpfchen&#8221;, &#8220;Schnellchecker&#8221;<br />
<a href="http://www.mootools.net/">mootools</a> &#8211; <a href="http://demos.mootools.net/Mousewheel">MouseWheel Event</a> (<a href="http://demos.mootools.net/MousewheelCustom">Custom</a>), <a href="http://demos.mootools.net/Tips">Tips</a>, <a href="http://demos.mootools.net/Chain">Chain</a>, <a href="http://demos.mootools.net/Group">Group</a><a href="http://www.mootools.net/"><br />
</a></p>
<p>(via <a href="http://hr.antville.org/stories/1742831/">rbthmr</a>)</p>
<p>ToDo: mootools testen, ab und zu ein Comic anschaun</p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2008/01/miss-hie-extracted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infinite scrolling like in google reader with jquery</title>
		<link>http://bohuco.net/blog/2007/12/infinite-scrolling-like-in-google-reader-with-jquery/</link>
		<comments>http://bohuco.net/blog/2007/12/infinite-scrolling-like-in-google-reader-with-jquery/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 19:02:17 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Infinite]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Scrolling]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=50</guid>
		<description><![CDATA[A very quick and dirty test implementation of the new google reader feature &#8220;infinite scrolling&#8221;. All in one file (except jquery of course). The four lines php ajax server, returns the list items. Some jquery javascript checks the scrolling and does the list item fetching with ajax. See it in action Source Code incl. PHP]]></description>
			<content:encoded><![CDATA[<p>A very quick and dirty test implementation of the new google reader feature &#8220;infinite scrolling&#8221;. All in one file (except jquery of course). The four lines php ajax server, returns the list items. Some jquery javascript checks the scrolling and does the list item fetching with ajax.</p>
<p><a href="http://bohuco.net/testing/infinite/">See it in action</a><br />
<a href="http://bohuco.net/testing/infinite/index.php.txt">Source Code incl. PHP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2007/12/infinite-scrolling-like-in-google-reader-with-jquery/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE8 macht den ACID2 &#8230; oder doch nicht?</title>
		<link>http://bohuco.net/blog/2007/12/ie8-macht-den-acid2-oder-doch-nicht/</link>
		<comments>http://bohuco.net/blog/2007/12/ie8-macht-den-acid2-oder-doch-nicht/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 12:29:39 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ACID]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=51</guid>
		<description><![CDATA[Wie Golem und Microsoft stolz berichten wird der IE8 den ACID2 bestehen. Allerdings gibts da derzeit ein kleines Problem mit dem ACID2, irgendwie scheint er kaputt zu sein. Da bleibt jetzt die Frage offen wie die M$-Leute getestet haben &#8230; am kaputten Orginal-Test? Hoffentlich nicht]]></description>
			<content:encoded><![CDATA[<p>Wie <a href="http://www.golem.de/trackback/56653">Golem</a> und Microsoft <a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">stolz berichten</a> wird der IE8 den ACID2 bestehen. Allerdings gibts da derzeit ein <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=289480#c177">kleines Problem mit dem ACID2</a>, irgendwie scheint er kaputt zu sein. Da bleibt jetzt die Frage offen wie die M$-Leute getestet haben &#8230; am kaputten Orginal-Test? Hoffentlich nicht <img src='http://bohuco.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2007/12/ie8-macht-den-acid2-oder-doch-nicht/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very cute accordion</title>
		<link>http://bohuco.net/blog/2007/12/very-cute-accordion/</link>
		<comments>http://bohuco.net/blog/2007/12/very-cute-accordion/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 08:33:25 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Bookmark]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Accordion]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Widget]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=41</guid>
		<description><![CDATA[Für seine Referenzen verwendet Marius Roosendaal ein sehr lässiges Accordion. Um einige Features ergänzt ergibt dieses Widget eine passable Bilder-Gallerie inkl. Paging und Beschreibungen. http://www.mariusroosendaal.com ps.: Sehr geil ist auch der Style-Switcher mit dem man zwischen Tag/Nacht-Theme umschalten kann.]]></description>
			<content:encoded><![CDATA[<p>Für seine Referenzen verwendet <a href="http://www.mariusroosendaal.com">Marius Roosendaal</a> ein sehr lässiges <a href="http://en.wikipedia.org/wiki/Accordion_%28GUI%29">Accordion</a>. Um einige Features ergänzt ergibt dieses <a href="http://de.wikipedia.org/wiki/Fensterkontrollelement">Widget</a> eine passable Bilder-Gallerie inkl. Paging und Beschreibungen.</p>
<p><a href="http://www.mariusroosendaal.com/" title="Roosendaal Accordion"><img src="http://flusensieb.files.wordpress.com/2007/12/accordion.jpg" alt="Roosendaal Accordion" border="0" height="150" width="424" /></a></p>
<p><a href="http://www.mariusroosendaal.com/">http://www.mariusroosendaal.com</a></p>
<p>ps.: Sehr geil ist auch der Style-Switcher mit dem man zwischen Tag/Nacht-Theme umschalten kann.</p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2007/12/very-cute-accordion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proof it to me …. Isometric Gamearea</title>
		<link>http://bohuco.net/blog/2007/12/proof-it-to-me-isometric-gamearea/</link>
		<comments>http://bohuco.net/blog/2007/12/proof-it-to-me-isometric-gamearea/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 19:42:00 +0000</pubDate>
		<dc:creator>DerFichtl</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://bohuco.net/blog/?p=32</guid>
		<description><![CDATA[Ist es grundsätzlich möglich ein isometrisches Spielfeld im Browser darzustellen? Im ersten Augenblick wird man sagen, &#8220;Sicher, why not.&#8221;, aber nach einer kurzen Denkpause sollte einem auffallen das man da einige Probleme bekommt. 1. Man hat keine Zeichenfunktionen, ich will kein svg, canvas oder dergleichen verwenden (das wär ja leicht). 2. Damit kann man nur [...]]]></description>
			<content:encoded><![CDATA[<p>Ist es grundsätzlich möglich ein isometrisches Spielfeld im Browser darzustellen? Im ersten Augenblick wird man sagen, &#8220;Sicher, why not.&#8221;, aber nach einer kurzen Denkpause sollte einem auffallen das man da einige Probleme bekommt.</p>
<p>1. Man hat keine Zeichenfunktionen, ich will kein svg, canvas oder dergleichen verwenden (das wär ja leicht).<br />
2. Damit kann man nur rechteckige Bilder verwenden &#8230; das macht die Sache nicht einfacher, vorallem im Bezug: Wie erkenn ich auf welchem der Bilder die Maus gerade steht (überlappen sich ja).</p>
<p>Aber mit ein bissl Fantasie hats dann doch hingehauen. Dann noch mittels <a href="http://jquery.com/">jquery</a> ein wenig Drag hier und ein bisschen Drop dort, und schon wars fertig.</p>
<p><a href="http://bohuco.net/webiso/">http://bohuco.net/webiso/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bohuco.net/blog/2007/12/proof-it-to-me-isometric-gamearea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

