HTML: Unterschied zwischen den Versionen
Aus Wikizone
| (4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
| + | == Siehe auch == | ||
| + | [[Tools für Webentwickler / Web Development]] | ||
| + | |||
| + | [[HTML5]] | ||
| + | |||
| + | [[CSS]] | ||
| + | |||
[[Inline Frames]] | [[Inline Frames]] | ||
[[HTML - Zeitsparen mit HTML - Bausteinen]] | [[HTML - Zeitsparen mit HTML - Bausteinen]] | ||
| + | == Optimierungen == | ||
| + | |||
| + | ===HTML - Apple Touch Icon=== | ||
| + | [[Homepage mit iPhone Homescreen Icon]] | ||
| + | |||
| + | === Alte IE mit htmlshiv fit machen === | ||
| + | <pre> | ||
| + | <!--[if lt IE 9]> | ||
| + | <link rel="stylesheet" type="text/css" href="/fileadmin/templates/css/iehacks.css" /> | ||
| + | <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script> | ||
| + | <![endif]--> | ||
| + | </pre> | ||
| + | === Retina Displays / Hochauflösende Displays === | ||
| + | |||
| + | == HTML - Background Video == | ||
| + | http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-ytplayer/ | ||
| + | |||
| + | <syntaxhighlight lang="html5"> | ||
| + | <iframe id="mbYTP_bgndVideo_home" class="playerBox" style="position: absolute; z-index: 0; width: 1964.96px; height: 1228px; top: 0px; left: 0px; overflow: hidden; opacity: 1; margin-top: -360.5px; margin-left: -230.48px;" frameborder="0" allowfullscreen="1" title="YouTube video player" width="640" height="360" src="https://www.youtube.com/embed/-jGVnv7KQ9Q?autoplay=0&modestbranding=1&controls=0&showinfo=0&rel=0&enablejsapi=1&version=3&playerapiid=mbYTP_bgndVideo_home&origin=http%3A%2F%2Fwww.wearesplit.de&allowfullscreen=true&wmode=transparent&iv_load_policy=3&html5=1"></iframe> | ||
| + | </syntaxhighlight> | ||
Aktuelle Version vom 26. September 2015, 12:41 Uhr
Siehe auch[Bearbeiten]
Tools für Webentwickler / Web Development
HTML - Zeitsparen mit HTML - Bausteinen
Optimierungen[Bearbeiten]
HTML - Apple Touch Icon[Bearbeiten]
Homepage mit iPhone Homescreen Icon
Alte IE mit htmlshiv fit machen[Bearbeiten]
<!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="/fileadmin/templates/css/iehacks.css" /> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script> <![endif]-->
Retina Displays / Hochauflösende Displays[Bearbeiten]
HTML - Background Video[Bearbeiten]
http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-ytplayer/
<iframe id="mbYTP_bgndVideo_home" class="playerBox" style="position: absolute; z-index: 0; width: 1964.96px; height: 1228px; top: 0px; left: 0px; overflow: hidden; opacity: 1; margin-top: -360.5px; margin-left: -230.48px;" frameborder="0" allowfullscreen="1" title="YouTube video player" width="640" height="360" src="https://www.youtube.com/embed/-jGVnv7KQ9Q?autoplay=0&modestbranding=1&controls=0&showinfo=0&rel=0&enablejsapi=1&version=3&playerapiid=mbYTP_bgndVideo_home&origin=http%3A%2F%2Fwww.wearesplit.de&allowfullscreen=true&wmode=transparent&iv_load_policy=3&html5=1"></iframe>