apfelearth
Neues Mitglied
Ist es möglich eine Seite als volles iFrame einzubinden, sodass es genau diese Seite voll und ganzer grösse im iFrame anzeigt und alles überdeckt?
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.
Ich denke schon, oder ich verstehe die Anforderung falsch?Stimmt, geht nicht, es ist nicht mit HTML realisierbar.
<html>
<head>
<title>fake page</title>
<style type="text/css">
* {margin:0;padding:0;}
iframe {
position:absolute;
width:100%;
height:100%;
z-index:999;
}
</style>
</head>
<body>
<iframe frameborder="0" src="http://www.apple.com/startpage/"></iframe>
</body>
</html>
Ich denke schon, oder ich verstehe die Anforderung falsch?
Ist das in dem obigen Beispiel nicht über den ganzen viewport?da sich ein iFrame nicht über den gesamten Viewport decken lässt.
Würde ich auch so sehen, es sei denn, man will eine fremde page einbinden.Aber wozu das ganze? Warum nicht gleich direkt einbinden?
Ist es möglich eine Seite als volles iFrame einzubinden, sodass es genau diese Seite voll und ganzer grösse im iFrame anzeigt und alles überdeckt?
<!doctype html>
<html>
<head>
<title></title>
<style>
html, body{
height:100%;
margin:0;
padding:0
}
iframe{
position;absolute;
top:0;
left:0;
height:100%;
width:100%;
margin:0;
padding:0;
border:0
}
</style>
</head>
<body>
<iframe src="http://google.de"></iframe>
</body>
</html>
Würde ich auch so sehen, es sei denn, man will eine fremde page einbinden.
...will nicht doof rüberkommen, struppi, aber im Prinzip ist das das gleiche wie mein Beispiel, ausser das man mit border:0 den Rahmen vom iframe leider nich weg bekommt.
Habe eben ein Forum extern gehostet und möchte es jetzt in meine Page einbinden
[COLOR=#000080]<!doctype html>[/COLOR]
[COLOR=#000080]<html>[/COLOR]
[COLOR=#000080]<head>[/COLOR]
[COLOR=#000080]<title>[/COLOR][COLOR=#000080]</title>[/COLOR]
[COLOR=#800080]<style>[/COLOR]
html, body{
height:100%;
margin:0;
padding:0
}
iframe{
position;absolute;
top:0;
left:0;
height:100%;
width:100%;
margin:0;
padding:0;
border:0
}
[COLOR=#800080]</style>[/COLOR]
[COLOR=#000080]</head>[/COLOR]
[COLOR=#000080]<body>[/COLOR]
[COLOR=#000080]<iframe src=[COLOR=#0000ff]"http://google.de"[/COLOR]>[/COLOR][COLOR=#000080]</iframe>[/COLOR]
[COLOR=#000080]</body>[/COLOR]
[COLOR=#000080]</html>[/COLOR]