Internet Explorer full screen mode?

前端 未结 8 2477
情歌与酒
情歌与酒 2020-11-30 12:59

I am building a web based free dynamic news reader (aka \"autoplay\" feature), that you can test it from here:

http://www.fivetechsoft.com/news

and I would l

相关标签:
8条回答
  • 2020-11-30 13:33
    <script>
    var splashWin = window.open("http://google.com", "win",
        "fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0")
    </script>
    

    Google is your friend:

    http://webfx.eae.net/dhtml/splashwin/splashwin.html

    :)

    0 讨论(0)
  • 2020-11-30 13:34

    To achieve full screen on launch of ie:

    Right click on the desktop launch icon... and and in the Target Field, append -k "http://www.google.com"

    The complete target field should look something like

    "C:\Program Files (x86)\Internet Explorer\iexplore.exe" -k "http://www.google.com"
    

    This disables all IE toolbars, addressbards you name it , you cant push F11 return to normal view either

    0 讨论(0)
提交回复
热议问题