Als England noch eine Königin hatte Im vorigen Jahrtausend wäre das Folgende akzeptabel gewesen. Immerhin: Via php -S 127.0.0.1:9000
„serviert“ „macht“ es mein Chromium noch. Er weigert sich aber sobald ich die index.html direkt vom Filesystem öffnen will.
File: index.html
<html>
<frameset id="myFrameset" cols="50%,50%" border="0" frameborder="0">
<frame name="links" src="links.html">
<frame name="rechts" src="rechts.html">
</frameset>
<html>
File: links.html
<html>
<script>
function vollbildL() {
var myFrameset = parent.document.getElementById("myFrameset");
myFrameset.setAttribute("cols", 100%,0%);
}
function einordnenL() {
var myFrameset = parent.document.getElementById("myFrameset");
myFrameset.setAttribute("cols", "50%,50%");
}
</script>
<h1>Links</h1>
<button onclick="vollbildL()">Vollbild</button>
<button onclick="einordnenL()">Einordnen</button>
</html>
File: rechts.html
<html>
<script>
function vollbildR() {
var myFrameset = parent.document.getElementById("myFrameset");
myFrameset.setAttribute("cols", "0%,100%");
}
function einordnenR() {
var myFrameset = parent.document.getElementById("myFrameset");
myFrameset.setAttribute("cols", "50%,50%");
}
</script>
<h1>Rechts</h1>
<button onclick="vollbildR()">Vollbild</button>
<button onclick="einordnenR()">Einordnen</button>
</html>
Nachtrag: Man verzeihe mir Nutzung des modernen <button>
. Mit
<input type="button" value="…" onclick="…">`
wird das aber auch gehen. Wer also ein Museum einrichten will ändere das, wer aber neue Webseiten baut (wir haben den 21.09.2022) mache das einfach mal nicht nach.