Non riesco a far si che immagine non venga estesa molto di piu della mia visualizzazione della pagina ((non capisco se e lo zoom che non va bene)), oppure e il file.js questa e la index
Codice HTML:
<html>
<body>
<script src="fixedbackground.js" type="text/javascript"></script>
<body onload="fixedBackground('sfondivista5.jpeg');">
<embed src='Seeatmo_sommer.mp3' repeat='infinite' hidden='true' ></embed>
<br><br><br><br><br><br>
<center><font size=20><b>Pannello Accesso</b></font>
<br><br>
<form method="post" action="registra.php">
<br><br><br>
<center><tr><b>Nome</b></tr><center><input name="nome" type="text" size="15"></tr>
<center><tr><b>Password</b></tr><center><input name="pass" type="text" size="15"></tr>
<center><tr><b>Email</b></tr><center><input name="email" type="text"size="20"></tr>
<br><br>
<input type="submit" name="invia" value="Invia">
<?php
$database = file("utenti.txt");
$num_utenti = count($database);
?>
</body>
</html>
mentre il file.js
Codice HTML:
function fixedBackground(url)
{
if(!backgroundset)
{
document.body.style.overflow = 'hidden';
document.body.style.padding = '0px';
document.body.style.margin = '3px';
var overlay = document.createElement('DIV');
overlay.style.position = 'absolute';
overlay.style.top = '0px';
overlay.style.left = '0px';
overlay.style.height = '100%';
overlay.style.width = '100%';
overlay.style.overflow = 'auto';
overlay.innerHTML = document.body.innerHTML;
document.body.innerHTML = '<img id="background" height="100%" width="100%" src="' + url + '" style="left: 0; bottom: 0; right: 0; top: 0; z-index: 0" />';
document.body.appendChild(overlay);
backgroundset=true;
}
else
background.src=url;
}
Questa e immagine che mi viene tagliata in basso... mentre questa e index, in oltre
Codice HTML:
<embed src='Seeatmo_sommer.mp3' repeat='infinite' hidden='true' ></embed>
una volta che finisce .mp3 non viene ripetuto come mai???