<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.stephanschlegel.de/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=91.47.253.159</id>
	<title>Wikizone - Benutzerbeiträge [de]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.stephanschlegel.de/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=91.47.253.159"/>
	<link rel="alternate" type="text/html" href="https://wiki.stephanschlegel.de/index.php?title=Spezial:Beitr%C3%A4ge/91.47.253.159"/>
	<updated>2026-05-06T20:00:08Z</updated>
	<subtitle>Benutzerbeiträge</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://wiki.stephanschlegel.de/index.php?title=JQTouch&amp;diff=18734</id>
		<title>JQTouch</title>
		<link rel="alternate" type="text/html" href="https://wiki.stephanschlegel.de/index.php?title=JQTouch&amp;diff=18734"/>
		<updated>2011-04-21T16:00:30Z</updated>

		<summary type="html">&lt;p&gt;91.47.253.159: /* Konventionen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Einleitung ==&lt;br /&gt;
Auf jQuery basierendes Framework für Smartphones&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
http://blog.peepcode.com/tutorials/2009/jqtouch-cheat-sheet&lt;br /&gt;
&lt;br /&gt;
== Kurzanleitung ==&lt;br /&gt;
=== Einrichten ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        &amp;lt;style type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot;&amp;gt;@import &amp;quot;../../jqtouch/jqtouch.min.css&amp;quot;;&amp;lt;/style&amp;gt;&lt;br /&gt;
        &amp;lt;style type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot;&amp;gt;@import &amp;quot;../../themes/jqt/theme.min.css&amp;quot;;&amp;lt;/style&amp;gt;&lt;br /&gt;
        &amp;lt;script src=&amp;quot;../../jqtouch/jquery.1.3.2.min.js&amp;quot; type=&amp;quot;text/javascript&amp;quot; charset=&amp;quot;utf-8&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
        &amp;lt;script src=&amp;quot;../../jqtouch/jqtouch.min.js&amp;quot; type=&amp;quot;application/x-javascript&amp;quot; charset=&amp;quot;utf-8&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== Initialisieren ===&lt;br /&gt;
Siehe hierzu auch die Demos&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot; charset=&amp;quot;utf-8&amp;quot;&amp;gt;&lt;br /&gt;
            var jQT = new $.jQTouch({&lt;br /&gt;
                icon: &amp;#039;jqtouch.png&amp;#039;,&lt;br /&gt;
                addGlossToIcon: false,&lt;br /&gt;
                startupScreen: &amp;#039;jqt_startup.png&amp;#039;,&lt;br /&gt;
                statusBar: &amp;#039;black&amp;#039;,&lt;br /&gt;
                preloadImages: [&lt;br /&gt;
                    &amp;#039;../../themes/jqt/img/back_button.png&amp;#039;,&lt;br /&gt;
                    &amp;#039;../../themes/jqt/img/back_button_clicked.png&amp;#039;,&lt;br /&gt;
                    &amp;#039;../../themes/jqt/img/button_clicked.png&amp;#039;,&lt;br /&gt;
                    &amp;#039;../../themes/jqt/img/grayButton.png&amp;#039;,&lt;br /&gt;
                    &amp;#039;../../themes/jqt/img/whiteButton.png&amp;#039;,&lt;br /&gt;
                    &amp;#039;../../themes/jqt/img/loading.gif&amp;#039;&lt;br /&gt;
                    ]&lt;br /&gt;
            });&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Konventionen ===&lt;br /&gt;
Ausschnitte aus dem jQTouch Cheatsheet&lt;br /&gt;
&lt;br /&gt;
a.back&lt;br /&gt;
    Just like native apps, pages are navigated in a stack. jQTouch handles backward navigation and animation if you include a back link in the toolbar.&lt;br /&gt;
&lt;br /&gt;
Custom HTML&lt;br /&gt;
    Although jQTouch includes styling for many elements, you don&amp;#039;t have to use them! Style up your own interfaces with HTML and CSS.&lt;br /&gt;
&lt;br /&gt;
ul&lt;br /&gt;
    Lists make great menus or table-like displays. Add the rounded, plastic or edgetoedge classes to an unordered list for different styles.&lt;br /&gt;
&lt;br /&gt;
Images&lt;br /&gt;
    Stock and freeware icons are easy to use and can make your app look great. A 12px square icon works best. Try Helveticons, Glyphish or Eddit.&lt;br /&gt;
&lt;br /&gt;
li.arrow &amp;amp; li.forward&lt;br /&gt;
    Themes include classes for indicating the clickability of list items.&lt;br /&gt;
&lt;br /&gt;
JavaScript Callbacks&lt;br /&gt;
    Use jQuery to attach to the tap event. Or bind to pageAnimationEnd to add your own custom page behavior.&lt;br /&gt;
&lt;br /&gt;
h2&lt;br /&gt;
    Subtitles separate sections.&lt;br /&gt;
&lt;br /&gt;
ul.individual&lt;br /&gt;
    This class styles unordered lists as half-width buttons.&lt;br /&gt;
&lt;br /&gt;
div.info&lt;br /&gt;
    A styled div for auxiliary notes.&lt;br /&gt;
&lt;br /&gt;
div.current&lt;br /&gt;
 the default container which is shown at first&lt;/div&gt;</summary>
		<author><name>91.47.253.159</name></author>
	</entry>
</feed>