Visualizzazione dei risultati da 1 a 2 su 2
  1. #1

    nascondere barre degli strumenti

    Ciao a tutti

    ho realizzato un sito in html e avrei la seguente necessità.

    nell'home page c'è un link ad un immagine dove cliccando si pare un pop-up con la galleria completa di tutte le immagini (tipo slideshow),

    l'esigenza che ho e di aprire il pop-up con delle dimensioni predefinite e il ridimensionamento bloccato ma soprattutto con le barre dei menu nascosta.

    qualcuno saprebbe darmi una mano?

    vi ringrazio

    Gentilissimi

    Andrea

  2. #2
    Utente bannato
    Registrato dal
    May 2009
    Messaggi
    393
    codice:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    
    <html>
    <head>
    	<title>Untitled</title>
    	
    	<script type="text/javascript" language="JavaScript">
    <!--
    
    function winOpen(URL, windowName, width, height, left, top, resizable, location, menubar, scrollbars, status, toolbar, directories){
    	var windowFeatures;
    	windowFeatures = '';
    	if (width != '')
    		windowFeatures = windowFeatures+'width='+width+',';
    	if (height != '')
    		windowFeatures = windowFeatures+'height='+height+',';
    	if (left != '')
    		windowFeatures = windowFeatures+'height='+height+',';
    	if (top != '')
    		windowFeatures = windowFeatures+'height='+height+',';
    	if (resizable)
    		windowFeatures = windowFeatures+'resizable,';
    	if (location)
    		windowFeatures = windowFeatures+'location,';
    	if (menubar)
    		windowFeatures = windowFeatures+'menubar,';
    	if (scrollbars)
    		windowFeatures = windowFeatures+'scrollbars,';
    	if (status)
    		windowFeatures = windowFeatures+'status,';
    	if (toolbar)
    		windowFeatures = windowFeatures+'toolbar,';
    	if (directories)
    		windowFeatures = windowFeatures+'directories,';
    	window.open(URL, windowName, windowFeatures);
    }
    
    //-->
    </script>
    
    	
    	
    </head>
    
    <body>
    
    Apri finestra
    </body>
    </html>

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.