主页 > 网页设计易尔灵网络科技

html网页全屏代码?

274 2023-12-13 17:49

<script><!--function fullwin(){window.open("bigpage.html","bfs","fullscreen,scrollbars")}//--></script><center><form><input type="button" onClick="fullwin()" value="Open Full Screen Window"></form></center>

另外,如果想让已经打开的网页全屏,有以下两种方法:

1.使用ActiveX

<html><head><title>test</title><script language="JavaScript">function Fkey(){ var WsShell = new ActiveXObject('WScript.Shell') WsShell.SendKeys('{F11}');}</script></head><body><a>to full</a></body></html>

2.使用window.open模拟当前页:

<SCRIPT language="JavaScript"> function toFull(){ if(window.name=="fullscreen")return; var a =window.open("","fullscreen","fullscreen=yes") a.location = window.location.href window.opener=null window.close() } </SCRIPT> <html> <body> <input type=button value="full" onclick=toFull()> </body> </html>

顶一下
(0)
0%
踩一下
(0)
0%
相关评论
我要评论
点击我更换图片

热点提要

网站地图 (共14个专题13070篇文章)

返回首页