How to Make a Fullscreen Slided Web Page Using jQuery?

Discussion in 'jQuery' started by Eminatorz, Dec 27, 2010.

  1. #1
    Hi, jQuery lover :)

    I have a problem according to make a fullscreen slided webpage using jQuery?
    I need it to make a presentation.

    If you have any idea, please reply it, or PM me.

    Thank you
     
    Eminatorz, Dec 27, 2010 IP
  2. Toneek Muz

    Toneek Muz Peon

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I've got idea: use Flash. ;)
     
    Toneek Muz, Dec 27, 2010 IP
  3. Eminatorz

    Eminatorz Member

    Messages:
    130
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #3
    Do you know how to solve it with jQuery without using flash?
     
    Eminatorz, Dec 27, 2010 IP
  4. Toneek Muz

    Toneek Muz Peon

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    No, sorry.
     
    Toneek Muz, Dec 27, 2010 IP
  5. ThePHPMaster

    ThePHPMaster Well-Known Member

    Messages:
    737
    Likes Received:
    52
    Best Answers:
    33
    Trophy Points:
    150
    #5
    You can try mimic a full screen using window.open and enable theater mode (works in IE only):

    
    var theHeight = screen.height ;
    var theWidth = screen.width;
    window.open('http://google.com',windowOpened,'channelmode=yes,directories=no,fullscreen=yes,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,height='+theHeight+',width='+theWidth);
    
    Code (markup):
     
    ThePHPMaster, Dec 27, 2010 IP
  6. Eminatorz

    Eminatorz Member

    Messages:
    130
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #6
    Do you have that scripts which is compatible to every browsers?
     
    Eminatorz, Dec 28, 2010 IP
  7. ThePHPMaster

    ThePHPMaster Well-Known Member

    Messages:
    737
    Likes Received:
    52
    Best Answers:
    33
    Trophy Points:
    150
    #7
    The above should work on all browsers.
     
    ThePHPMaster, Dec 31, 2010 IP