|
|
Zeile 1: |
Zeile 1: |
| __NOTOC__ | | __NOTOC__ |
| = Informationen zu [[WebTechniken]] = | | = Informationen zu [[WebTechniken]] = |
|
| |
| http://www.w3schools.com/ hat zu folgenden Themen Infos:
| |
| {| border="1" cellpadding="2" cellspacing="0"
| |
| | HTML 4
| |
| | HTML 5
| |
| |-
| |
| | XML DOM
| |
| | Javascript
| |
| |-
| |
| | HTML DOM
| |
| | HTML Colors
| |
| |-
| |
| | SQL
| |
| | PHP
| |
| |-
| |
| | XSLT
| |
| | XPath
| |
| |}
| |
|
| |
| == CSS == | | == CSS == |
| * [http://coding.smashingmagazine.com/2008/08/13/top-10-css-table-designs/ 10 verschiedene CSS-Tabellendesigns] | | * [http://coding.smashingmagazine.com/2008/08/13/top-10-css-table-designs/ 10 verschiedene CSS-Tabellendesigns] |
| * [http://blog.themeforest.net/tutorials/vertical-centering-with-css/ Vertikales Zentrieren]
| |
| * [http://csswizardry.com/2010/01/iphone-css-tips-for-building-iphone-websites/ Tips für iPhone-Webseiten]
| |
| * [http://www.lonniebest.com/FormatCSS/ CSS-Code umformartieren] (um min-Varianten lesbar zu machen)
| |
| * [http://twitter.github.com/bootstrap/index.html Bootstrap] - CSS-Framework (von den Seiten auf Shea genutzt)
| |
|
| |
| == Javascript ==
| |
| * [http://javascript.crockford.com/code.html Code Conventions]
| |
| * [http://jquery.com/ jQuery] - die Standard-Javascript-Bibliothek
| |
| * [http://jgestures.codeplex.com/ jGestures] - jQuery-Plugin zum Erkennen von Wisch-Gesten
| |
| * [https://github.com/balupton/history.js history.js] - jQuery-Plugin für Browser-History
| |
| * [https://github.com/balupton/jquery-ajaxy jQuery Ajaxy] - jQuery-Plugin für AJAX-Webseiten
| |
| * [https://github.com/balupton/jquery-scrollto jQuery ScrollTo] - jQuery-Plugin fürs Scrollen zu DOM-Elementen
| |
| * [http://www.appelsiini.net/projects/lazyload Lazy Load] - jQuery Plugin, um Bilder erst zu laden, wenn sie sichtbar werden
| |
| * [https://github.com/carhartl/jquery-cookie jQuery Cookie]
| |
| * Globales Suchen und Ersetzen mit Variable:
| |
|
| |
| <pre><nowiki>
| |
| var mystring = "hello world test world";
| |
| var find = "world";
| |
| var regex = new RegExp(find, "g");
| |
| alert(mystring.replace(regex, "yay")); // alerts "hello yay test yay"
| |
| </nowiki></pre>
| |
|
| |
|
| |
| === sortierbare Tabellen ===
| |
| * http://mottie.github.io/tablesorter/
| |
| * http://trirand.com/blog/jqgrid/jqgrid.html
| |
| * http://trirand.com/blog/jqgrid/jqgrid.html
| |
|
| |
| === jquery.history.js ===
| |
| Fehler <code><nowiki>NS_ERROR_DOM_QUOTA_REACHED: Persistent storage maximum size reached</nowiki></code> Wird verursacht durch übervollen lokalen Speicher in der Browser-Session. Überprüf- und behebbar mit
| |
|
| |
| <pre><nowiki>
| |
| JSON.stringify(sessionStorage).length;
| |
| sessionStorage.removeItem('History.store');
| |
| </nowiki></pre>
| |
|
| |
|
| |
| == iPhone ==
| |
| * [http://mobile.tutsplus.com/tutorials/mobile-web-apps/remove-address-bar/ Verschiedene Techniken zum Entfernen Address Bar auf dem iPhone]
| |
| * [http://rakaz.nl/2009/09/iphone-webapps-101-getting-safari-out-of-the-way.html iPhone Webapp Tutorial]
| |
|
| |
|
| == Resourcen == | | == Resourcen == |
| * [http://www.iconfinder.com/search/?q=iconset%3Agnomeicontheme IconFinder] | | * [http://www.iconfinder.com/search/?q=iconset%3Agnomeicontheme IconFinder] |
| * [http://spritegen.website-performance.org/ CSS Sprite Generator]
| |
|
| |
| == Sonstiges ==
| |
| * [http://diveintohtml5.com/video.html Video in Webseiten]
| |
| * [http://www.amyeditor.com/website/manual/ Amy Editor] - ein in Webseiten integrierbarer Editor
| |
|
| |
| ----
| |
| [[KategorieWissen]]
| |
|
| |
|