Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
ann ist der kristall mittig aber keine ahnung wie ich den dann skalierbar bekomme.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<video autoplay loop poster="img/site-components/Altar_Room.png" id="bgvid">
<source src="Video/trailer_header_webm.webm">
<source src="Video/trailer_header_mp4.mp4">
</video>
<div id="replaced_logo">
<img src="img/branding/replaced_logo.png" width="146" height="332" alt=""/>
</div>
<div id="button_left">
<img src="img/buttons/button_left_01.png" width="424" height="124" alt=""/>
</div>
<div id="dwld_button">
<img src="img/buttons/dwld_button_01.png" width="572" height="124" alt=""/>
</div>
<div id="button_right">
<img src="img/buttons/button_right_01.png" width="424" height="124" alt=""/>
</div>
<div id="panel">
<img src="img/site-components/panel.png" width="1920" height="422" alt=""/>
</div>
</body>
</html>
@charset "utf-8";
/* CSS Document */
video#bgvid {
position: fixed;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
background: url(polina.jpg) no-repeat;
background-size: cover;
}
#replaced_logo {
padding-top: 100px;
text-align: center;
}
#button_left {
z-index: +10;
}
#dwld_button {
z-index: +10;
}
#button_right {;
z-index: +10;
}
#panel {
position: fixed;
top: 57%;
left: 0%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -10;
}
Stichwort float, siehe http://www.w3schools.com/css/css_float.asp
Was hindert dich daran? Zur Not bei einem Freehostersie ist leider noch nicht online
BBCodes [code=option] - Unterstützte Sprachen schrieb:4cs, 6502acme, 6502kickass, 6502tasm, 68000devpac, abap, actionscript, actionscript3, ada, algol68, apache, applescript, apt_sources, arm, asm, asp, asymptote, autoconf, autohotkey, autoit, avisynth, awk, bascomavr, bash, basic4gl, bf, bibtex, blitzbasic, bnf, boo, c, c_loadrunner, c_mac, caddcl, cadlisp, cfdg, cfm, chaiscript, cil, clojure, cmake, cobol, coffeescript, cpp, cpp-qt, csharp, css, cuesheet, d, dcl, dcpu16, dcs, delphi, diff, div, dos, dot, e, ecmascript, eiffel, email, epc, erlang, euphoria, f1, falcon, fo, fortran, freebasic, freeswitch, fsharp, gambas, gdb, genero, genie, gettext, glsl, gml, gnuplot, go, groovy, gwbasic, haskell, haxe, hicest, hq9plus, html4strict, html5, icon, idl, ini, inno, intercal, io, j, java, java5, javascript, jquery, kixtart, klonec, klonecpp, latex, lb, ldif, lisp, llvm, locobasic, logtalk, lolcode, lotusformulas, lotusscript, lscript, lsl2, lua, m68k, magiksf, make, mapbasic, matlab, mirc, mmix, modula2, modula3, mpasm, mxml, mysql, nagios, netrexx, newlisp, nsis, oberon2, objc, objeck, ocaml, ocaml-brief, octave, oobas, oorexx, oracle11, oracle8, oxygene, oz, parasail, parigp, pascal, pcre, per, perl, perl6, pf, php, php-brief, pic16, pike, pixelbender, pli, plsql, postgresql, povray, powerbuilder, powershell, proftpd, progress, prolog, properties, providex, purebasic, pycon, pys60, python, q, qbasic, rails, rebol, reg, rexx, robots, rpmspec, rsplus, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, spark, sparql, sql, stonescript, systemverilog, tcl, teraterm, text, thinbasic, tsql, typoscript, unicon, upc, urbi, uscript, vala, vb, vbnet, vedit, verilog, vhdl, vim, visualfoxpro, visualprolog, whitespace, whois, winbatch, xbasic, xml, xorg_conf, xpp, yaml, z80, zxbasic
Oder auf https://jsfiddle.netWas hindert dich daran? Zur Not bei einem Freehoster
Was hindert dich daran? Zur Not bei einem Freehoster
#button_left {
float: left;
z-index: +10;
margin-left: -8px;
margin-right: 150px;
}
#dwld_button {
margin-left: 90px;
float: left;
z-index: +10;
}
#button_right {
float: left;
z-index: +10;
margin-left: 252px;
<div id="button_left">
<img src="img/buttons/button_left_01.png" width="424" height="124" alt=""/>
</div>
<div id="dwld_button">
<img src="img/buttons/dwld_button_01.png" width="572" height="124" alt=""/>
</div>
<div id="button_right">
<img src="img/buttons/button_right_01.png" width="424" height="124" alt=""/>
</div>
<div style="clear:both;"></div>
#button_left {
float: left;
}
#dwld_button {
float: left;
}
#button_right {
float: right;
}
Wozu habe ich das fiddle gebaut? :(