Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
<a href="javascript:window.open('page.html','newwin','fullscreen=yes');return false;">
Open a window in full screen
You've heard it for years: the Web is either multimedia or not. To give a CD-Rom look to your site, load it as a full screen window, without borders or status bars - without all
the deoration. This tip is above all for IE4+ but also produces nice results with NS4+. Between <Head> and </Head> in your file index.html, add the following:
<SCRIPT LANGUAGE="javascript">
<!--
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 ))
if (ie4)
a = window.open("http://www.mysite.com/yourpage.html", "MM", "fullscreen=yes");
else
a = window.open("http://www.mysite.com/yourpage.html", "MM", "height="+window.screen.availHeight+", width="+(window.screen.availWidth-10)+", top=0, left=0, toolbar=no,
status=no, scrollbars=no, location=no, menubar=no, directories=no, resizable=no");
//-->
</SCRIPT>
einde script
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.