Visualizzazione dei risultati da 1 a 3 su 3

Discussione: schermo intero

  1. #1

    schermo intero

    Vorrei realizzare un sito a schermo intero con un filmato flash, solo che ancora non ho capito qual'è la funzione javascript da digitare e qual'è la funzione per tornare al formato standard, se qualcuno potesse aiutarmi gliene sarei veramente molto grato, non so più dove sbattere la testa...!!!
    Il filmato flash è index.fla


    Grazie anticipatamente!!!
    Paolo
    Come on you irons!!!

  2. #2

    Re: schermo intero

    Originariamente inviato da hammer75
    Vorrei realizzare un sito a schermo intero con un filmato flash, solo che ancora non ho capito qual'è la funzione javascript da digitare e qual'è la funzione per tornare al formato standard, se qualcuno potesse aiutarmi gliene sarei veramente molto grato, non so più dove sbattere la testa...!!!
    Il filmato flash è index.fla


    Grazie anticipatamente!!!
    Paolo
    ciao Pa
    spiega bene quel schermo intero..

    fullscreen..
    o browser a tutto schermo ?
    Interactive Html/CSS/JS Playground | @webbeloz ( cip..cip! )
    Mechanics & Expert Tuning Fix Z3 Roadster Community

  3. #3
    Ciao, nella pagina che lancia quella contenente il file flash devi inserire all'interno del tag <head>,modifica il percorso della variabile url // set the page to go to...
    url = "intro.asp":

    <script>

    // (C) 2001 www.CodeLifter.com
    // http://www.codelifter.com
    // Free for all users, but leave in this header

    // set the page to go to...
    url = "intro.asp";

    // set how fast to expand horizontally
    // lower is slower
    var speedX = 7;

    // set how fast to expand vertically
    // lower is slower
    var speedY = 5;

    // set background color of "Loading..." screen
    var bgColor = "#000000";

    // set text color of "Loading..." screen
    var txtColor = "#FF80000";


    // do not edit below this line
    // ---------------------------

    if (document.all){
    var wide = window.screen.availWidth;
    var high = window.screen.availHeight;
    }

    function fullscreen(){
    if (document.all){
    var Boomer = window.open("","BoomWindow","fullscreen");
    Boomer.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=ARIAL COLOR='+txtColor+'>Loading...</FONT></BODY></HTML>');
    Boomer.focus();
    for (H=1; H<high; H+= speedY){
    Boomer.resizeTo(1,H);
    }
    for (W=1; W<wide; W+= speedX){
    Boomer.resizeTo(W,H);
    }
    Boomer.location = url;
    }
    else {
    window.open(url,"BoomWindow","");
    }
    }

    </script>


    nel link effettivo metti :

    [img]flash.jpg[/img]

    per verificare se e' questo che cerchi clicca qui e visualizza il sito in flash.

    bye.
    -Nextart.it Graphic Solutions

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.