<?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>mysrc.de &#187; Javascript</title> <atom:link href="http://www.mysrc.de/category/javascript/feed/" rel="self" type="application/rss+xml" /><link>http://www.mysrc.de</link> <description>- jQuery, MooTools, HTML5, AJAX</description> <lastBuildDate>Tue, 14 Jun 2011 08:24:25 +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>Typeface mit font-weight:bold</title><link>http://www.mysrc.de/javascript/typeface-mit-font-weightbold/</link> <comments>http://www.mysrc.de/javascript/typeface-mit-font-weightbold/#comments</comments> <pubDate>Fri, 30 Jul 2010 20:17:10 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[sIFR]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=1100</guid> <description><![CDATA[Als Webentwickler kennt man das Problem mit kommerziellen Schriftarten, die aus dem Corporate Design stammen, aber nicht als Webfont zur Verfügung stehen. Beliebt sind dafür immer verschiedenste Formen des Image-Replacements. Die Nachteile davon liegen auf der Hand: Keine optimale Suchmaschinerkennung Hoher Änderungs- und Verwaltungsaufwand Text nicht kopierbar Problem der Barrierefreiheit Neben der Bilderlösung dürfte sIFR [...]]]></description> <content:encoded><![CDATA[<p>Als Webentwickler kennt man das Problem mit kommerziellen Schriftarten, die aus dem Corporate Design stammen, aber nicht als Webfont zur Verfügung stehen. Beliebt sind dafür immer verschiedenste Formen des <strong>Image-Replacements</strong>. Die Nachteile davon liegen auf der Hand:</p><ul><li>Keine optimale Suchmaschinerkennung</li><li>Hoher Änderungs- und Verwaltungsaufwand</li><li>Text nicht kopierbar</li><li>Problem der Barrierefreiheit</li></ul><p>Neben der Bilderlösung dürfte <a
href="http://wiki.novemberborn.net/blog/sifr">sIFR</a> eine bekannte Methode sein. Hier wird der Text aus einem bestimmten HTML-Tag gelesen und durch einen Flashfilm mit eingebettem Font ersetzt. In der Theorie gut, in der Praxis schwierig wegen eines enorm hohen Konfigurationsaufwands.</p><p>Nach dem gleichen Prinzip funktioniert das js-Plugin <a
href="http://typeface.neocracy.org/">Typeface</a>. Nur ist es etwas praktischer in der Handhabung.<br
/> Der folgende Code bindet einen normalen Font und einen später beschriebenen Bold-Font ein:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1100code4'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p11004"><td
class="line_numbers"><pre>1
2
3
</pre></td><td
class="code" id="p1100code4"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;typeface-0.14.js&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>mce<span style="color: #339933;">:</span><span style="color: #CC0000;">0</span><span style="color: #339933;">--&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;mysrcFont.typeface.js&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>mce<span style="color: #339933;">:</span><span style="color: #CC0000;">1</span><span style="color: #339933;">--&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;mysrcFontBold.typeface.js&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>mce<span style="color: #339933;">:</span><span style="color: #CC0000;">2</span><span style="color: #339933;">--&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div><p>Um dem Text die entsprechende Schriftart zuzuweißen, benutzt man einfach die CSS Anweisung font-family.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1100code5'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p11005"><td
class="line_numbers"><pre>1
2
</pre></td><td
class="code" id="p1100code5"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;text&quot; style=&quot;font-family: mySrc Font;&quot;&gt;
Lorum ipsolum...&lt;/div&gt;</pre></td></tr></table></div><p>Den Namen des im syle-Attribut verwendeten Fonts kann man in den jeweiligen js-Dateien nachlesen.<br
/> Das Ganze hat zwei Nachteile, wie sie auch schon auf der Website beschrieben werden. <strong>Performanceprobleme</strong> bei größeren Textmengen und Standard-CSS <strong>Hovereffekte</strong> funktionieren nicht mehr.<br
/> Damit der Font in eine Javascript Datei umgewandelt werden muss er in einem <strong>Truetype oder Opentype Format</strong> vorliegen. Nicht immer ist bei diesen Schriften auch die fette Variante integriert. Um das in den Griff zu bekommen, kann man mit einem Font Bearbeitungstool nur die Bold-Variante exportieren und diese ebenfalls umwandeln. Bindet man nun diese beide JS-Dateien ein und weist die Bold-Schrift einem einem HTML-Element zu, passiert abgesehen von einer Fehlerausgabe in der Firebug Konsole nichts.<br
/> Die Lösung dafür ist ganz einfach. Der <strong>Font-Converter</strong> auf der Typeface Website integriert auch Informationen über Schriftschnitte weshalb der CSS-Selektor diese Info auch benötigt:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1100code6'); return false;">View Code</a> CSS</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p11006"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td
class="code" id="p1100code6"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#text</span><span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> mySrc Font<span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#boldFont</span><span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> mySrc Boldfont<span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div><p>Damit ist der Workaround für die Einbettung von normalen und bold Schriften perfekt.</p><p><a
title="Cufón – Eine Javascript alternative zu sIFR" href="http://www.mysrc.de/web-development/cufon-eine-javascript-alternative-zu-sifr/">Cufón – Eine Javascript alternative zu sIFR</a><br
/> <a
title="sIFR 3 r436 – scroll-Problem im Firefox 3, ie6/7" href="http://www.mysrc.de/javascript/sifr-3-r436-scroll-problem-im-firefox-3-ie67/">sIFR 3 r436 – scroll-Problem im Firefox 3, ie6/7</a></p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>15. April 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-versus-css/" title="jQuery versus CSS">jQuery versus CSS</a></li><li>12. April 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-ui-css-framework/" title="jQuery UI CSS Framework">jQuery UI CSS Framework</a></li><li>8. April 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-media-plugin-zum-einbinden-verschiedener-mime-types/" title="jQuery Media Plugin zum Einbinden verschiedener Mime-Types">jQuery Media Plugin zum Einbinden verschiedener Mime-Types</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/javascript/typeface-mit-font-weightbold/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>jQuery Tutorial &#8211; Closing an Accordion automatically</title><link>http://www.mysrc.de/jquery/jquery-tutorial-closing-an-accordion-automatically/</link> <comments>http://www.mysrc.de/jquery/jquery-tutorial-closing-an-accordion-automatically/#comments</comments> <pubDate>Mon, 27 Jul 2009 17:10:57 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[JS-Framework Tutorials]]></category> <category><![CDATA[Javascript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[CSS Framework]]></category> <category><![CDATA[jQuery UI]]></category> <category><![CDATA[Tutorial]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=782</guid> <description><![CDATA[Entscheidender Punkt für die Umsetzung dabei sind Events. Die jQuery API bietet eine Menge verschiedener Events für die Registierung von Mousebewegungen. In unserem Beispiel sorgen wir nun dafür, dass sich nach dem Verlassen des Accordions mit dem Cursor das letzte geöffnete Accordion Div wieder schließt. Also, erstmal zum HTML-Aufbau ?View Code HTML1 2 3 4 [...]]]></description> <content:encoded><![CDATA[<p>Entscheidender Punkt für die Umsetzung dabei sind <strong>Events</strong>. Die <strong>jQuery API</strong> bietet eine Menge verschiedener Events für die Registierung von Mousebewegungen.<br
/> In unserem Beispiel sorgen wir nun dafür, dass sich nach dem Verlassen des Accordions mit dem Cursor das letzte geöffnete Accordion Div wieder schließt.</p><p>Also, erstmal zum HTML-Aufbau</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p782code10'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p78210"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td
class="code" id="p782code10"><pre class="html" style="font-family:monospace;">&nbsp;
&lt;h2 class=&quot;demoHeaders&quot;&gt;Accordion&lt;/h2&gt;
&lt;div id=&quot;accordion&quot;&gt;
	&lt;div&gt;
	&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;First&lt;/a&gt;&lt;/h3&gt;
		&lt;div&gt;Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.&lt;/div&gt;
	           &lt;/div&gt;
	&lt;div&gt;
		&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;Second&lt;/a&gt;&lt;/h3&gt;
		&lt;div&gt;Phasellus mattis tincidunt nibh.&lt;/div&gt;
	&lt;/div&gt;
	&lt;div&gt;
		&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;Third&lt;/a&gt;&lt;/h3&gt;
		&lt;div&gt;Nam dui erat, auctor a, dignissim quis.&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;</pre></td></tr></table></div><p>Das ist der Standardaufbau des Accoridons aus <a
href="http://jqueryui.com/demos/accordion/">jQuery UI</a>. Das CSS entstammt dem <a
href="http://jqueryui.com/docs/Theming/API">jQuery UI CSS Framework</a>.<br
/> Damit können Themes einfach, im Prinzip durch eine standardisierte Benamung von Elementen, ausgetauscht werden.</p><p>Nun zum Javascript Code. Er beinhaltet den Aufruf des Accordions und die Registrierung der Mouseevents.<br
/> Wir wollen das Accordion erst nach einer kleinen Verzögerung schließen, deshalb benutzen wie die Funktion <strong>setTimout</strong>. Falls der Benutzer innhalb dieser Zeit wieder mit dem Cursor über das Accordion fährt, muss dieser Timeout abgebrochen werden. Deshalb speichern wir<br
/> das Timeout-Objekt in einer globalen javascript Variabeln (<strong>tObj</strong>). Mittels der Funktion <strong>clearTimeout</strong> wird dieser Timout nun vorzeitig ohne Aufruf der Callback-Funktion beendet.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p782code11'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p78211"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td
class="code" id="p782code11"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #003366; font-weight: bold;">var</span> tObj<span style="color: #339933;">;</span>
&nbsp;
	$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	           <span style="color: #006600; font-style: italic;">// simple accordion with special markup</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#accordion'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">accordion</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
			header<span style="color: #339933;">:</span> <span style="color: #3366CC;">'h3'</span><span style="color: #339933;">,</span>
			active<span style="color: #339933;">:</span> <span style="color: #3366CC;">'.selected'</span><span style="color: #339933;">,</span>
			collapsible<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span>
			autoHeight<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#accordion&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">mouseleave</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		   	tObj<span style="color: #339933;">=</span>setTimeout<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;menu.accordion('activate', active);&quot;</span><span style="color: #339933;">,</span><span style="color: #CC0000;">3000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 	           <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#accordion&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">mouseenter</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	     		clearTimeout<span style="color: #009900;">&#40;</span>tObj<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div><p>Da das Accordion in das Div mit der id &#8220;accordion&#8221; gehüllt ist, genügt es uns vollkommen die Events ebenfalls auf dieses Div zu legen.<br
/> Es bietet sich an die zwei Mousevents mittels Punktoperator zu verknüpfen. Die Funktionalität bleibt die gleiche, allerdings wird eine <strong>DOM Operation weniger</strong> ausgeführt. Was sich vor allem in Schleifen deutlich bemerkbar macht.<br
/> Verkettet sähe die Anweisung so aus:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p782code12'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p78212"><td
class="line_numbers"><pre>1
2
3
4
5
</pre></td><td
class="code" id="p782code12"><pre class="javascript" style="font-family:monospace;">	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#accordion&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">mouseleave</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		tObj<span style="color: #339933;">=</span>setTimeout<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;menu.accordion('activate', 'active');&quot;</span><span style="color: #339933;">,</span><span style="color: #CC0000;">3000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
               <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">mouseenter</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	    	clearTimeout<span style="color: #009900;">&#40;</span>tObj<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Ein Beispiel dazu findet unter in unserem <a
href="http://www.mysrc.de/demo/accordion/">Demobereich</a>.</p><p>And kind regards to Fabian Hallstein for his idea&#8230;</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>12. November 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-prasentationen-fur-ein-besseres-verstandnis/" title="jQuery Präsentationen für ein besseres Verständnis">jQuery Präsentationen für ein besseres Verständnis</a></li><li>16. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-accessible-ria-widgets-fur-jedermann/" title="jQuery &#8211; Accessible-RIA &#8211; Widgets für jedermann">jQuery &#8211; Accessible-RIA &#8211; Widgets für jedermann</a></li><li>30. Juni 2009 -- <a
href="http://www.mysrc.de/allgemein/jquery-mypass-password-hiding-iphone-style/" title="jQuery myPass &#8211; password hiding iPhone-Style">jQuery myPass &#8211; password hiding iPhone-Style</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/jquery-tutorial-closing-an-accordion-automatically/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Tools für jQuery &#8211; Ein Plugin UI Elemente</title><link>http://www.mysrc.de/jquery/tools-fur-jquery-ein-plugin-ui-elemente/</link> <comments>http://www.mysrc.de/jquery/tools-fur-jquery-ein-plugin-ui-elemente/#comments</comments> <pubDate>Sat, 06 Jun 2009 08:47:12 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[jQuery UI]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=670</guid> <description><![CDATA[Von jQuery gibt es eine eigene Bibliothek für UI- bzw. Oberflächenelemente. Diese bezieht sich allerdings eher auf Animationen und andere Effekte. Selbstverständlich stehen auch fertige Komponenten wie Kalender, Accordion und Drag &#8216;n Drop zu Verfügung. jQuery Tools setzt dagegen direkt auf fertige Komponenten. Ähnlich wie auf der jQuery UI Seite lassen sich einzelne Teile direkt [...]]]></description> <content:encoded><![CDATA[<p>Von jQuery gibt es eine eigene <a
href="http://jqueryui.com/home">Bibliothek</a> für UI- bzw. Oberflächenelemente. Diese bezieht sich allerdings eher auf <strong>Animationen und andere Effekte</strong>. Selbstverständlich stehen auch fertige Komponenten wie <strong>Kalender, Accordion und Drag &#8216;n Drop</strong> zu Verfügung.</p><p><a
href="http://flowplayer.org/tools/index.html">jQuery Tools</a> setzt dagegen direkt auf fertige Komponenten. Ähnlich wie auf der jQuery UI Seite lassen sich einzelne Teile direkt herunterladen oder alle Funktionen in einem Skript. Die Funktionspallette erstreckt sich über <strong>Tooltips, Tabs, Scrolling, Highlighting und Overlays</strong>.</p><p><a
href="http://flowplayer.org/tools/index.html"><img
src="http://www.mysrc.de/wp-content/uploads/2009/06/jquery_tools.jpg" alt="jQuery Tools" title="jquery_tools" width="400" height="135" class="size-full wp-image-675" /></a></p><p><strong>jQuery Tools</strong> lassen sich einfach einbinden, hier ein Tab Beispiel:<br
/> Der HTML Code</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p670code15'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p67015"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td
class="code" id="p670code15"><pre class="html" style="font-family:monospace;">&lt;!-- the tabs --&gt;
&lt;ul class=&quot;tabs&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Tab 1&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Tab 2&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Tab 3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&nbsp;
&lt;!-- tab &quot;content&quot; --&gt;
&lt;div class=&quot;content&quot;&gt;
    &lt;div&gt;First tab content. Tab contents are called &quot;content&quot;&lt;/div&gt;
    &lt;div&gt;Second tab content&lt;/div&gt;
    &lt;div&gt;Third tab content&lt;/div&gt;
&lt;/div&gt;</pre></td></tr></table></div><p>Der Javascript Code</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p670code16'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p67016"><td
class="line_numbers"><pre>1
2
3
4
5
</pre></td><td
class="code" id="p670code16"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Aufruf nach dem dom-Ready Event</span>
$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #006600; font-style: italic;">// Zuordnung von den ul-Tags zum Inhalt</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;ul.tabs&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">tabs</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.content&gt; div&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Dieses Plugin besticht durch seine saubere <strong>Trennung zwischen CSS und Javascript Code</strong> sowie durch seine <strong>kleine Größe</strong> und <strong>einfache Handhabung</strong>.</p><p>Einfach mal anschauen und testen..</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>23. März 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-%e2%80%93-jqtransform-bug-bei-input-in-firefox-3-5-2/" title="Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2">Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2</a></li><li>20. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-button-width-einstellen/" title="Praxistipp: jqTransform Button width einstellen">Praxistipp: jqTransform Button width einstellen</a></li><li>16. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/" title="Praxistipp &#8211; jqTransform width bug">Praxistipp &#8211; jqTransform width bug</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/tools-fur-jquery-ein-plugin-ui-elemente/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Droplist Filter Plugin &#8211; Dropdown´s durchsuchen</title><link>http://www.mysrc.de/jquery/droplist-filter-plugin-dropdown%c2%b4s-durchsuchen/</link> <comments>http://www.mysrc.de/jquery/droplist-filter-plugin-dropdown%c2%b4s-durchsuchen/#comments</comments> <pubDate>Tue, 02 Jun 2009 09:28:20 +0000</pubDate> <dc:creator>Oliver Storm</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[jQuery]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=615</guid> <description><![CDATA[Wer kennt das nicht. Man hat eine DropDown-Liste mit unglaublich vielen Einträgen und der User ist genötigt ewig lang zu scrollen um seine Auswahl zu treffen. Im schlimmsten Fall ist die Liste dann noch nicht einmal alphabetisch vorsortiert. Genau dieser Problematik nimmt sich das Droplist-Filter-Plugin an. Es bietet dem User die Möglichkeit, beiKlick auf ein [...]]]></description> <content:encoded><![CDATA[<p>Wer kennt das nicht. Man hat eine <strong>DropDown-Liste</strong> mit unglaublich <strong>vielen Einträgen</strong> und der User ist genötigt ewig lang zu scrollen um seine Auswahl zu treffen.<br
/> Im schlimmsten Fall ist die Liste dann noch nicht einmal alphabetisch vorsortiert.</p><p>Genau dieser Problematik nimmt sich das Droplist-Filter-Plugin an.<br
/> Es bietet dem User die Möglichkeit, beiKlick auf ein kleines Suche-Icon, die Inhalte der DropDown vor zu filtern.</p><p><img
class="alignnone size-full wp-image-616" title="dropfilter" src="http://www.mysrc.de/wp-content/uploads/2009/05/dropfilter.jpg" alt="dropfilter" width="459" height="94" /></p><p>Ursprünglich in reinem Javascript entwickelt, gibt es den Filter jetzt auch als <strong>Plugin</strong> für Drupal, <strong>jQuery</strong>, WordPress, Mantis oder eben Standalone.</p><p>Das <strong>einbinden des jQuery-Plugins</strong> ist denkbar einfach. Dateien herunterladen, einbinden und aktivieren mit:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p615code18'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p61518"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p615code18"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;select&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">droplistFilter</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Eine Demo sowie alle Dateien zum Download findet Ihr auf der <a
title="Droplist Filter" href="http://nihilex.com/droplist-filter" target="_blank">offiziellen Website</a>.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>1. Dezember 2010 -- <a
href="http://www.mysrc.de/html5/jquery-mobile-der-eitenaufbau/" title="jQuery Mobile &#8211; Der Seitenaufbau">jQuery Mobile &#8211; Der Seitenaufbau</a></li><li>25. November 2010 -- <a
href="http://www.mysrc.de/jquery/jquery-mobile-web-apps-mit-jquery/" title="jQuery Mobile &#8211; Web-Apps mit jQuery">jQuery Mobile &#8211; Web-Apps mit jQuery</a></li><li>19. November 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-suchfeld-leeren-on-focus-jquery/" title="Praxistipp: Suchfeld leeren on focus (jQuery)">Praxistipp: Suchfeld leeren on focus (jQuery)</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/droplist-filter-plugin-dropdown%c2%b4s-durchsuchen/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Flip! &#8211; jQuery Plugin</title><link>http://www.mysrc.de/jquery/flip-jquery-plugin/</link> <comments>http://www.mysrc.de/jquery/flip-jquery-plugin/#comments</comments> <pubDate>Thu, 28 May 2009 08:49:26 +0000</pubDate> <dc:creator>Oliver Storm</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[animation]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=610</guid> <description><![CDATA[Ich möchte euch heute über den Tag verteilt kurz ein paar nette neue Plugins vorstellen. Los geht´s mit Flip! einem jQuery Plugin welches euer Element in alle Richtungen drehen kann. Das Plugin beitet verschiedene Optionen wie z.B. einstellen der Richtung, definieren der Start- und Endhintergrundfarbe bei der Animation, die Geschwindigkeit, aufruf von Funktionen am Start [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-611" title="flipbox" src="http://www.mysrc.de/wp-content/uploads/2009/05/flipbox.jpg" alt="flipbox" width="459" height="94" /></p><p>Ich möchte euch heute über den Tag verteilt kurz ein paar nette neue Plugins vorstellen.<br
/> Los geht´s mit <strong>Flip!</strong> einem <strong>jQuery Plugin</strong> welches euer Element in alle Richtungen drehen kann.</p><p>Das Plugin beitet verschiedene Optionen wie z.B. einstellen der Richtung, definieren der Start- und Endhintergrundfarbe bei der Animation, die Geschwindigkeit, aufruf von Funktionen am Start oder nach Abschluss der Animation usw.<br
/> Das Ganze läuft mit<strong> jQuery 1.3.1. </strong></p><p>Eingebunden wird das ganze einfach so:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p610code20'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p61020"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p610code20"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#flipBox&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">flip</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> direction<span style="color: #339933;">:</span> <span style="color: #3366CC;">'tb'</span><span style="color: #339933;">,</span> color<span style="color: #339933;">:</span> <span style="color: #3366CC;">'#B34212'</span><span style="color: #339933;">,</span> content<span style="color: #339933;">:</span>$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#myId&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Eine Demo sowie alle Dateien zum Download findet ihr auf der <a
title="Flip!0.5 - A jQuery plugin" href="http://lab.smashup.it/flip/#" target="_blank">offiziellen Website </a>des Plugins.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>23. März 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-%e2%80%93-jqtransform-bug-bei-input-in-firefox-3-5-2/" title="Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2">Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2</a></li><li>20. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-button-width-einstellen/" title="Praxistipp: jqTransform Button width einstellen">Praxistipp: jqTransform Button width einstellen</a></li><li>16. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/" title="Praxistipp &#8211; jqTransform width bug">Praxistipp &#8211; jqTransform width bug</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/flip-jquery-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Filemanager basierend auf MooTools</title><link>http://www.mysrc.de/mootools/filemanager-basierend-auf-mootools/</link> <comments>http://www.mysrc.de/mootools/filemanager-basierend-auf-mootools/#comments</comments> <pubDate>Wed, 06 May 2009 15:09:39 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[MooTools]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=454</guid> <description><![CDATA[Unter der Website von Christoph Pojer findet ihr einen beeindruckenden Filemanager. Er ist noch in der Erprobungsphase, aber bietet schon eine angenehme Oberfläche und eine gute Usability und natürlich volle Funktionalität. Der Filemanager zum Verwalten von Bildern bzw. Dateien auf einem PHP-Webserver basiert auf MooTools. Eine kleine Liste der Features: Betrachten der Ordner und Dateien [...]]]></description> <content:encoded><![CDATA[<p>Unter der Website von <a
href="http://og5.net/christoph/article/MooTools_based_FileManager">Christoph Pojer</a> findet ihr einen beeindruckenden Filemanager. Er ist noch in der Erprobungsphase, aber bietet schon eine <strong>angenehme Oberfläche</strong> und eine <strong>gute Usability</strong> und natürlich volle Funktionalität.</p><p>Der Filemanager zum Verwalten von Bildern bzw. Dateien auf einem PHP-Webserver basiert auf <strong>MooTools</strong>. Eine kleine Liste der Features:</p><ul><li>Betrachten der Ordner und Dateien auf einem Server</li><li>Umbenennen, Löschen, Kopieren und Verschieben von Dateien</li><li>Detailansicht von Bildern</li><li>Fileupload mit dem bekannten <a
href="http://digitarald.de/project/fancyupload/">Fancyupload</a> in der neuen Version</li><li>Automatisches verkleinern von großen Bildern</li><li>&#8230;</li></ul><p>Eine Demo findet ihr unter: <a
href="http://og5.net/christoph/Scripts/FileManager/Demos/">Filemanager</a></p><p>Der Aufruf ist denkbar einfach:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p454code22'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p45422"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td
class="code" id="p454code22"><pre class="javascript" style="font-family:monospace;"> <span style="color: #003366; font-weight: bold;">var</span> manager <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> FileManager<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
    url<span style="color: #339933;">:</span> <span style="color: #3366CC;">'manager.php'</span><span style="color: #339933;">,</span>
    assetBasePath<span style="color: #339933;">:</span> <span style="color: #3366CC;">'../Assets'</span><span style="color: #339933;">,</span>
    language<span style="color: #339933;">:</span> <span style="color: #3366CC;">'en'</span><span style="color: #339933;">,</span>
    uploadAuthData<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span>session<span style="color: #339933;">:</span> <span style="color: #3366CC;">'MySessionId'</span><span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'beispiel'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addEvent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'click'</span><span style="color: #339933;">,</span> manager.<span style="color: #660066;">show</span>.<span style="color: #660066;">bind</span><span style="color: #009900;">&#40;</span>manager<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Weiter gibt es auch die Möglichkeit den Filemanager in den WYSIWYG-Editor <a
href="http://tinymce.moxiecode.com/">TinyMCE</a> einzubauen. Dieser besitzt von Haus aus keine Möglichkeit eines gezielten Upload. Eine Demo dazu findet ihr ebenfalls auf Christopher&#8217;s Seite..</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>14. April 2009 -- <a
href="http://www.mysrc.de/mootools/notimoo-mac-growl-fur-mootools/" title="Notimoo &#8211; Mac Growl für MooTools">Notimoo &#8211; Mac Growl für MooTools</a></li><li>24. März 2011 -- <a
href="http://www.mysrc.de/mootools/mootools-menumatic-firefox-4-zweizeilig-problem/" title="MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem">MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem</a></li><li>23. März 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-%e2%80%93-jqtransform-bug-bei-input-in-firefox-3-5-2/" title="Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2">Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/mootools/filemanager-basierend-auf-mootools/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Notimoo &#8211; Mac Growl für MooTools</title><link>http://www.mysrc.de/mootools/notimoo-mac-growl-fur-mootools/</link> <comments>http://www.mysrc.de/mootools/notimoo-mac-growl-fur-mootools/#comments</comments> <pubDate>Tue, 14 Apr 2009 07:49:15 +0000</pubDate> <dc:creator>Oliver Storm</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[MooTools]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=345</guid> <description><![CDATA[Mit Notimoo kommt die vom Mac bekannte Anwendung &#8220;Growl&#8221; für MooTools. Mit Growl benachrichtigen Programme auf dem Mac den User darüber wenn etwas passiert. Notimoo selbst zeigt dem User Notzien im &#8220;Growl-Style&#8221; am Rand der Seite an. Einfaches Beispiel für die Implementierung: ?View Code JAVASCRIPT1 2 3 4 5 6 7 8 9 10 11 [...]]]></description> <content:encoded><![CDATA[<p>Mit Notimoo kommt die vom Mac bekannte Anwendung <strong>&#8220;Growl&#8221; für MooTools</strong>.<br
/> Mit Growl benachrichtigen Programme auf dem Mac den User darüber wenn etwas passiert.</p><p>Notimoo selbst zeigt dem User Notzien im &#8220;Growl-Style&#8221; am Rand der Seite an.</p><p><strong>Einfaches Beispiel</strong> für die Implementierung:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p345code24'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p34524"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td
class="code" id="p345code24"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Now I create the manager so it will display notifications from the left bottom corner</span>
<span style="color: #003366; font-weight: bold;">var</span> notimooManager <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Notimoo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
   locationVType<span style="color: #339933;">:</span> <span style="color: #3366CC;">'bottom'</span><span style="color: #339933;">,</span>
   locationHType<span style="color: #339933;">:</span> <span style="color: #3366CC;">'left'</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// Showing a notification that does not disappear.</span>
notimooManager.<span style="color: #660066;">show</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
    title<span style="color: #339933;">:</span> <span style="color: #3366CC;">'Testing notification'</span><span style="color: #339933;">,</span>
    message<span style="color: #339933;">:</span> <span style="color: #3366CC;">'This notification will not disapper on its own. You must click on it to close.'</span><span style="color: #339933;">,</span>
    sticky<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Das ganze <a
title="Notimoo Projekt" href="http://code.google.com/p/notimoo/" target="_blank">Notimoo Projekt</a> wird unter der MIT license bei Google Code gehostet.<br
/> Eine <a
title="Notimoo Demo" href="http://paquitosoft.com/notimoo/" target="_blank">Demo</a> des ganzen findet Ihr hier.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>6. Mai 2009 -- <a
href="http://www.mysrc.de/mootools/filemanager-basierend-auf-mootools/" title="Filemanager basierend auf MooTools">Filemanager basierend auf MooTools</a></li><li>17. März 2009 -- <a
href="http://www.mysrc.de/mootools/mootools-multi-level-context-menu/" title="Schönes Multi-Level Context Menu auf MooTools (Rechtsklick-Menu)">Schönes Multi-Level Context Menu auf MooTools (Rechtsklick-Menu)</a></li><li>24. März 2011 -- <a
href="http://www.mysrc.de/mootools/mootools-menumatic-firefox-4-zweizeilig-problem/" title="MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem">MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/mootools/notimoo-mac-growl-fur-mootools/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Schönes Multi-Level Context Menu auf MooTools (Rechtsklick-Menu)</title><link>http://www.mysrc.de/mootools/mootools-multi-level-context-menu/</link> <comments>http://www.mysrc.de/mootools/mootools-multi-level-context-menu/#comments</comments> <pubDate>Tue, 17 Mar 2009 09:23:14 +0000</pubDate> <dc:creator>Oliver Storm</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[MooTools]]></category> <category><![CDATA[menu]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=253</guid> <description><![CDATA[Beim allmorgentlichen absurfen meiner Blogroll bin ich heute auf ein nettes Multi-Level Context Menu gestoßen das ich euch hier kurz vorstellen will. Das MooTools ContextMenu Plugin, wie es im Original heißt, wurde von David Walsh in CSS, XHTML und mittels MooTools geschrieben. Das Plugin ermöglicht das erstellen von schönen und funktionalen ContextMenus. Das Plugin kommt [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-medium wp-image-254" title="menu" src="http://www.mysrc.de/wp-content/uploads/2009/03/menu-300x207.jpg" alt="menu" width="234" height="161" /> Beim allmorgentlichen absurfen meiner Blogroll bin ich heute auf ein nettes Multi-Level Context Menu gestoßen das ich euch hier kurz vorstellen will.</p><p>Das <a
title="Mootools ContextMenu Plugin" href="http://davidwalsh.name/dw-content/moo-context-menu.php" target="_blank">MooTools ContextMenu Plugin</a>, wie es im Original heißt, wurde von David Walsh in CSS, XHTML und mittels MooTools geschrieben.<br
/> Das Plugin ermöglicht das erstellen von schönen und funktionalen ContextMenus.<br
/> Das Plugin kommt mit einer Vielzahl von Einstellmöglichkeiten daher:</p><ul><li><strong>actions: </strong>(wohl die Interessanteste) Hiermit lassen sich versch. Funktionen mit dem klick auf ein Item des Menus verknüpfen.</li><li><strong>menu: </strong>Die ID des elements that represents the menu XHTML</li><li><strong>stopEvent: </strong>Stopt die standard-Action des Elements wenn das Menu angewählt wird.</li><li><strong>onShow: </strong>Ruft eine Funktion auf wenn das menu eingeblendet wird.</li><li><strong>onHide: </strong>Ruft eine Funktion auf wenn das menu ausgeblendet wird.</li><li><strong>onClick: </strong>Ruft eine Funktion auf wenn das menu geklickt wird.</li></ul><p>Einen vollständigen Überblick über die Möglichkeiten findet Ihr im <a
title="David Walsh - MooTools context-menu" href="http://davidwalsh.name/mootools-context-menu" target="_blank">Blog-Post von David</a>.<br
/> Eine <a
title="Multi-Level Context Menu Demo" href="http://davidwalsh.name/dw-content/moo-context-menu.php" target="_blank">DEMO</a> des ganzen gibt es natürlich auch.</p><p>Und wen das Menu von David noch nicht so ganz überzeugt, der kann auch gerne mal einen Blick auf das <a
title="mif.menu" href="http://mifjs.net/trunk/menu/" target="_self">Mif.Menu</a> werfen.<br
/> Das Mif.Menu kommt mit abgerundeten Ecken, Schlagschatten und mehr daher.<br
/> <a
title="Mif.Menu Demo" href="http://mifjs.net/trunk/menu/Demos/index.html" target="_blank">Beipspiele</a> und <a
title="Mif.Menu Dokumentation" href="http://mifjs.net/trunk/menu/Docs/index.html" target="_blank">Doku</a> findet man hier.</p><p>Wer also auf der Suche nach einem Rechtsklick- bzw. Context-Menu ist und für den MooTools die erste Wahl ist solle sich diese beiden Menus mal genauer anschauen.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>14. April 2009 -- <a
href="http://www.mysrc.de/mootools/notimoo-mac-growl-fur-mootools/" title="Notimoo &#8211; Mac Growl für MooTools">Notimoo &#8211; Mac Growl für MooTools</a></li><li>24. März 2011 -- <a
href="http://www.mysrc.de/mootools/mootools-menumatic-firefox-4-zweizeilig-problem/" title="MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem">MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem</a></li><li>17. September 2009 -- <a
href="http://www.mysrc.de/mootools/praxistipp-position-absolute-parent-height-anpassen-mit-mootools/" title="Praxistipp &#8211; position absolute &#8211; parent height anpassen mit MooTools ">Praxistipp &#8211; position absolute &#8211; parent height anpassen mit MooTools </a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/mootools/mootools-multi-level-context-menu/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>GX &#8211; Javascript animations Framework auf jQuery</title><link>http://www.mysrc.de/javascript/gx-javascript-animations-framework-auf-jquery/</link> <comments>http://www.mysrc.de/javascript/gx-javascript-animations-framework-auf-jquery/#comments</comments> <pubDate>Sun, 15 Mar 2009 07:57:27 +0000</pubDate> <dc:creator>Oliver Storm</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[animation]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=235</guid> <description><![CDATA[Riccardo Degni, dem ein oder anderen evtl. von moo.rd bekannt, hat ein neues, super schlankes (10kb), cross-browser fähiges animations-framework auf jQuery veröffentlicht. Mit GX  lassen sich komplexe Animationen, mit allen W3C-konfromen CSS-Elementen erstellen. GX soll nicht nur eine einfache Bibliothek zum erstellen von Animationen sein. Riccardo will mit GX weitergehn und es zu einem FULL-FEATURED-FRAMEWORK [...]]]></description> <content:encoded><![CDATA[<p>Riccardo Degni, dem ein oder anderen evtl. von <a
title="moo.rd" href="http://www.moord.it/" target="_blank">moo.rd</a> bekannt, hat ein neues, super schlankes (10kb), cross-browser fähiges <strong>animations-framework auf jQuery</strong> veröffentlicht.<br
/> Mit GX  lassen sich komplexe Animationen, mit allen W3C-konfromen CSS-Elementen erstellen.</p><p>GX soll nicht nur eine einfache Bibliothek zum erstellen von Animationen sein. Riccardo will mit GX weitergehn und es zu einem FULL-FEATURED-FRAMEWORK werden lassen mit welchem sich weiche-, benutzerdefinierte- und komplexe-Animationen mit easing erstellen lassen.</p><p>Wichtig waren Riccorado bei der Entwicklung zwei wesentliche Ziele:</p><ul><li> <strong>&#8220;Write Less, Do More&#8221; </strong>von jQuery. Mit GX soll man immer so wenige Code wie nur irgend möglich schreiben müssen um die besten Ergebnissen zu erzielen.</li><li><strong>&#8220;Don´t Repeat Yourself&#8221;</strong>. Sollte eine funktionalität von GX mehr als einmal gebraucht werden, wird diese intern wiederverwendet ohne diese zu duplizieren.</li></ul><p>Das schöne an der ganzen Geschichte ist die <strong>Einfachkeit der Implementierung</strong>. Wo frühre versch. scriptfetzen nötig waren reichen jetzt ein paar einfache Zeilen aus um komplexe Animationen zu realisieren.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p235code26'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p23526"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</pre></td><td
class="code" id="p235code26"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// simple animation</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'element'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'width'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'+=200px'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'height'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'4em'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'opacity'</span><span style="color: #339933;">:</span><span style="color: #CC0000;">0.4</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'color'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'#ff0'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
<span style="color: #CC0000;">4000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// queue animations</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'element'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span>
            .<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">4000</span><span style="color: #009900;">&#41;</span>
            .<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'verySlow'</span><span style="color: #009900;">&#41;</span>
            .<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span> <span style="color: #CC0000;">100</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'slow'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// 'Complete' callback</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'element'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span> <span style="color: #CC0000;">200</span><span style="color: #339933;">,</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">2000</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'Bounce'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>el<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  el.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'The animation is completed!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// 'Start' and 'Complete' callbacks</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'element'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">gx</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span> <span style="color: #CC0000;">200</span><span style="color: #339933;">,</span> height<span style="color: #339933;">:</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">2000</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'Bounce'</span><span style="color: #339933;">,</span>
  <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'start'</span><span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>el<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> el.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'The animation is started!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
   <span style="color: #3366CC;">'complete'</span><span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>el<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> el.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'The animation is completed!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Weitere Informationen, Beispiele sowie die Doku finden sich auf der <a
title="GX Website" href="http://gx.riccardodegni.net/" target="_blank">offiziellen Website</a>.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>2. Juni 2009 -- <a
href="http://www.mysrc.de/jquery/droplist-filter-plugin-dropdown%c2%b4s-durchsuchen/" title="Droplist Filter Plugin &#8211; Dropdown´s durchsuchen">Droplist Filter Plugin &#8211; Dropdown´s durchsuchen</a></li><li>28. Mai 2009 -- <a
href="http://www.mysrc.de/jquery/flip-jquery-plugin/" title="Flip! &#8211; jQuery Plugin ">Flip! &#8211; jQuery Plugin </a></li><li>14. April 2009 -- <a
href="http://www.mysrc.de/mootools/notimoo-mac-growl-fur-mootools/" title="Notimoo &#8211; Mac Growl für MooTools">Notimoo &#8211; Mac Growl für MooTools</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/javascript/gx-javascript-animations-framework-auf-jquery/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>sIFR 3 r436 &#8211; scroll-Problem im Firefox 3, ie6/7</title><link>http://www.mysrc.de/javascript/sifr-3-r436-scroll-problem-im-firefox-3-ie67/</link> <comments>http://www.mysrc.de/javascript/sifr-3-r436-scroll-problem-im-firefox-3-ie67/#comments</comments> <pubDate>Thu, 12 Mar 2009 08:35:43 +0000</pubDate> <dc:creator>Oliver Storm</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[Best Practice]]></category> <category><![CDATA[sIFR]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=208</guid> <description><![CDATA[Gestern habe ich in eines meiner Projekte sIFR 3 revision 436 eingebaut und bin dabei auf ein Problem mit dem scroll-Verhalten gestoßen. Das Problem ist, kommt man beim scrollen mit der Maus über ein mittels sIFR erzeugtes Textelement verliert die Seite den scroll-Fokus und stoppt. Was zu einer für den User nicht hinnehmbaren Bedienung der [...]]]></description> <content:encoded><![CDATA[<p>Gestern habe ich in eines meiner Projekte <a
title="sIFR 3 - Latest Builds" href="http://wiki.novemberborn.net/sifr3/Nightlies" target="_blank">sIFR 3 revision 436</a> eingebaut und bin dabei auf ein Problem mit dem <strong>scroll-Verhalten</strong> gestoßen.<br
/> Das Problem ist, kommt man beim scrollen mit der Maus über ein mittels <strong>sIFR</strong> erzeugtes Textelement verliert die Seite den <strong>scroll-Fokus</strong> und stoppt.<br
/> Was zu einer für den User nicht hinnehmbaren Bedienung der Seite führt. Das Problem ist wohl bekannt, allerdings findet man im Netz nicht wirklich eine Lösung.<br
/> Daher will ich euch diesen kurzen Workaround nicht vorenthalten.</p><p>Man bekommt es zwar hin das dass ganze in Firefox 3 problemlos läuft, geht es allerdings dort macht der Internet-Explorer probleme.<br
/> Und fixed man das ganze so das es im IE läuft, wer hätte es gedacht, macht das ganze im Firefox nicht mehr mit.<br
/> Firefox benötigt zum reibungslosen Ablauf ein &#8220;wmode: &#8216;transparent&#8217;&#8221;, welches jedoch der IE garnicht mag.<br
/> Für den IE muss auch die background-color gesetzt sein.<br
/> <strong><br
/> Die Lösung:</strong><br
/> sIFR kommt von Haus aus mit einer Funktion zum erkennen des User-Agents daher, welche sich zum hier zum lösen des Problems perfekt nutzen lässt.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p208code28'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p20828"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td
class="code" id="p208code28"><pre class="javascript" style="font-family:monospace;">sIFR.<span style="color: #660066;">activate</span><span style="color: #009900;">&#40;</span>futura<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">var</span> futura <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span> src<span style="color: #339933;">:</span> <span style="color: #3366CC;">'futura.swf'</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>sIFR.<span style="color: #660066;">ua</span>.<span style="color: #660066;">gecko</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	sIFR.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>futura<span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>
		selector<span style="color: #339933;">:</span> <span style="color: #3366CC;">'h1'</span><span style="color: #339933;">,</span>
		wmode<span style="color: #339933;">:</span> <span style="color: #3366CC;">'transparent'</span><span style="color: #339933;">,</span>
		fixFocus<span style="color: #339933;">:</span> <span style="color: #3366CC;">'true'</span><span style="color: #339933;">,</span>
		css<span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span>
			<span style="color: #3366CC;">'.sIFR-root { background-color: #FFFFFF;color: #000000; text-transform: uppercase; margin: 0;}'</span>
			<span style="color: #339933;">,</span><span style="color: #3366CC;">'a {color: #000000; text-decoration: none; }'</span>
			<span style="color: #339933;">,</span><span style="color: #3366CC;">'a:hover {color: #000000; text-decoration: underline;}'</span>
		<span style="color: #009900;">&#93;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span>
		sIFR.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span>futura<span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>
		selector<span style="color: #339933;">:</span> <span style="color: #3366CC;">'h1'</span><span style="color: #339933;">,</span>
		fixFocus<span style="color: #339933;">:</span> <span style="color: #3366CC;">'true'</span><span style="color: #339933;">,</span>
		css<span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span>
			<span style="color: #3366CC;">'.sIFR-root { background-color: #FFFFFF;color: #000000; text-transform: uppercase; margin: 0;}'</span>
			<span style="color: #339933;">,</span><span style="color: #3366CC;">'a {color: #000000; text-decoration: none; }'</span>
			<span style="color: #339933;">,</span><span style="color: #3366CC;">'a:hover {color: #000000; text-decoration: underline;}'</span>
		<span style="color: #009900;">&#93;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div><p>Dies ist ein Simples Beispiel wie man z.B. Firefox von anderen Browser unterscheiden kann.</p><p><strong>Unterscheiden lassen sich folgende Browser:</strong><br
/> opera, konqueror, ie, ieSupported (für Smartphones), ieWin, windows, ieMac, macintosh, safari, webkit, khtml, gecko.<br
/> Des weiteren lassen sich auch Betriebssystem, Versionen usw abfragen. Wer´s genau wissen will einfach mal in der sifr.js ab Zeile 354 schauen.</p><p>Noch ein kleiner Tipp bzgl. <strong>sIFR und Umlauten</strong>. Bevor Ihr eure swf in Flash veröffentlicht geht auf die Schrift-Palette, Zeicheneinbettung und gebt zusätzlich zu “”‘’…_ &amp;amp; noch äöüÄÜÖß mit an um auch diese Zeichen integriert zu haben.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>24. März 2011 -- <a
href="http://www.mysrc.de/mootools/mootools-menumatic-firefox-4-zweizeilig-problem/" title="MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem">MooTools MenuMatic &#8211; Firefox 4 zweizeilig Problem</a></li><li>19. November 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-suchfeld-leeren-on-focus-jquery/" title="Praxistipp: Suchfeld leeren on focus (jQuery)">Praxistipp: Suchfeld leeren on focus (jQuery)</a></li><li>30. Juli 2010 -- <a
href="http://www.mysrc.de/javascript/typeface-mit-font-weightbold/" title="Typeface mit font-weight:bold">Typeface mit font-weight:bold</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/javascript/sifr-3-r436-scroll-problem-im-firefox-3-ie67/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
