Home   Programmi Giochi Html Gif Chat Siti utili Motori Filmati Ftp Utiliti Bacheca Foto Java Inni Midi Spartiti Orario   Indici
    Google
 

 


     

   Torna alla home

Home Page                                                                                Preferiti

COPIA  E INCOLLA IL CODICE HTML  SU FRONT PAGE

 

  SCRITTA CHE COMPARE A FONDO PAGE AGGIORNA SITO

Codice da copiare:

Aggiornato il <script language="JavaScript"> 
<!-- 
document.write(document.lastModified) 
// --> 
</script>


SCRITTA SCORREVOLE NELLA BARRA DI STATO

<!-- Begin
var osd = " "
osd +="Benvenuti nel sito musicale di Rino Riccio Umberto-alias BARABBA ";
osd +="troverete tante cose interessanti! ";
osd +="fate con calma!!. ";
osd +="buon divertimento! ";
osd +=" ";
var timer;
var msg = "";
function scrollMaster () {
msg = customDateSpring(new Date())
clearTimeout(timer)
msg += " " + showtime() + " " + osd
for (var i= 0; i < 100; i++){
msg = " " + msg;
}
scrollMe()
}
function scrollMe(){
window.status = msg;
msg = msg.substring(1, msg.length) + msg.substring(0,1);
timer = setTimeout("scrollMe()", 200);
}
function showtime (){
var now = new Date();
var hours= now.getHours();
var minutes= now.getMinutes();
var seconds= now.getSeconds();
var months= now.getMonth();
var dates= now.getDate();
var years= now.getYear();
var timeValue = ""
timeValue += ((months >9) ? "" : " ")
timeValue += ((dates >9) ? "" : " ")
timeValue = ( months +1)
timeValue +="/"+ dates
timeValue +="/"+ years
var timeValue2 = " " + hours
timeValue2 += ((minutes < 10) ? ":0":":") + minutes
return timeValue2;
}
function MakeArray(n) {
this.length = n
return this
}
monthNames = new MakeArray(12)
monthNames[1] = "gennaio"
monthNames[2] = "febbraio"
monthNames[3] = "marzo"
monthNames[4] = "aprile"
monthNames[5] = "maggio"
monthNames[6] = "giugno"
monthNames[7] = "luglio"
monthNames[8] = "agosto"
monthNames[9] = "settembre"
monthNames[10] = "ottobre"
monthNames[11] = "novembre"
monthNames[12] = "dicembre"
daysNames = new MakeArray(7)
daysNames[1] = "domenica"
daysNames[2] = "lunedì"
daysNames[3] = "martedì"
daysNames[4] = "mercoledì"
daysNames[5] = "giovedì"
daysNames[6] = "venerdì"
daysNames[7] = "sabato"
function customDateSpring(oneDate) {
var theDay = daysNames[oneDate.getDay() +1]
var theDate =oneDate.getDate()
var theMonth = monthNames[oneDate.getMonth() +1]
return " Oggi è " + theDay + " " + theDate + " " + theMonth + " e sono le ore" }
scrollMaster();
// End -->
</script>


COLORA LE BARRE LATERALI DELLA PAGINA WEB

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: blue; 
scrollbar-arrow-color: cyan;
}
</style> 

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: lightgreen; 
scrollbar-arrow-color: darkgreen;
}
</style> 

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: red; 
scrollbar-arrow-color: violet;
}
</style> 

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: rgb(198,198,0; 
scrollbar-arrow-color: yellow;
}
</style> 

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: purple; 
scrollbar-arrow-color: fuchsia;
}
</style> 

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: white; 
scrollbar-arrow-color: navy;
}
</style> 

Per ottenere questo effetto adopera il codice per il foglio di stile che trovi indicato a fianco ed inseriscilo nell'intestazione della pagina tra <head> e </head> <style TYPE="text/css"> 

BODY 

scrollbar-base-color: black; 
scrollbar-arrow-color: red;
}
</style> 


DA IL BENTORNATO AI VISITATORI DELLA TUA PAGE




<script language="JavaScript">
<!-- Begin
function GetCookie (name) { 
var arg = name + "="; 
var alen = arg.length; 
var clen = document.cookie.length; 
var i = 0; 
while (i < clen) {
var j = i + alen; 
if (document.cookie.substring(i, j) == arg) 
return getCookieVal (j); 
i = document.cookie.indexOf(" ", i) + 1; 
if (i == 0) break; 

return null;
}
function SetCookie (name, value) { 
var argv = SetCookie.arguments; 
var argc = SetCookie.arguments.length; 
var expires = (argc > 2) ? argv[2] : null; 
var path = (argc > 3) ? argv[3] : null; 
var domain = (argc > 4) ? argv[4] : null; 
var secure = (argc > 5) ? argv[5] : false; 
document.cookie = name + "=" + escape (value) + 
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + 
((path == null) ? "" : ("; path=" + path)) + 
((domain == null) ? "" : ("; domain=" + domain)) + 
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) { 
var exp = new Date(); 
exp.setTime (exp.getTime() - 1); 
var cval = GetCookie (name); 
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
var expDays = 30;
var exp = new Date(); 
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie('count')
if(count == null) {
SetCookie('count','1')
return 1
}
else {
var newcount = parseInt(count) + 1;
DeleteCookie('count')
SetCookie('count',newcount,exp)
return count
}
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
// End -->
</script>





<p align="center"><strong><font SIZE="2" FACE="Verdana" COLOR="#008000">
<script language="JavaScript"> 
<!-- Begin
document.write("BENVENUTO da RINO RICCIO ! Tu mi hai visitato <b>" + amt() + "</b> volte.")
// End -->
</script>
</font></strong></p>


DA IL BENVENUTO A CHI ENTRA NEL TUO SITO


<script>
<!--

var divs = new Array();
var da = document.all;
var start;
var speed = 50;
function initVars(){
if (!document.all)
return

addDiv(msg1,"lime",2,9);
addDiv(msg2,"red",4,9);
addDiv(msg3,"FF0000",6,9);




startGlow();
}

function addDiv(id,color,min,max)
{
var j = divs.length;
divs[j] = new Array(5);
divs[j][0] = id;
divs[j][1] = color;
divs[j][2] = min;
divs[j][3] = max;
divs[j][4] = true;
}

function startGlow()
{
if (!document.all)
return 0;

for(var i=0;i<divs.length;i++)
{
divs[i][0].style.filter = "Glow(Color=" + divs[i][1] + ", Strength=" + divs[i][2] + ")";
divs[i][0].style.width = "100%";
}

start = setInterval('update()',speed);
}

function update()
{
for (var i=0;i<divs.length;i++)
{
if (divs[i][4])
{
divs[i][0].filters.Glow.Strength++;
if (divs[i][0].filters.Glow.Strength == divs[i][3])
divs[i][4] = false;
}

if (!divs[i][4])
{
divs[i][0].filters.Glow.Strength--;
if (divs[i][0].filters.Glow.Strength == divs[i][2])
divs[i][4] = true;
}
}
}
-->
</script>





<body onLoad="initVars()">




<div id="msg1" style="color: lime" align="center"><p>Ciao !</p></div>
<div id="msg2" style="color: lime" align="center"><p>Benvenuto nel mio sito!</p></div>
<div id="msg3" style="color: lime" align="center"><p><a href="http://http://xoomer.virgilio.it/rinoriccio//ja_entrata/test_back.html">ENTRA PURE...!</a></p></div>


IMPEDISCE DI COPIARE LA TUA PAGINA WEB

JavaScript™
Sicurezza 3

DISABILITA IL TASTO DX DEL MOUSE E LA TASTIERA
Autore: SeatigerTeam™


Per i fanatici della sicurezza. Disabilitare le funzioni del tasto destro del mouse non impedisce la copia 
di stringhe di testo o di immagini, perché chiunque conosca un po' di scorciatoie sa che può evidenziare 
la frase o l'immagine e premendo in contemporanea i tasti CTRL e la lettera C le copierà per poi incollarli 
su un altro foglio con la combinazione dei tasti CTRL e lettera V. Con questo JavaScript™ sarà disabilitata 
anche la tastiera, quindi un briciolo di sicurezza in più. Liberamente utilizzabile in qualunque genere di sito.  


File necessari: nocopy.js


<!------------- INIZIO CODICE DA COPIARE NELL'INTESTAZIONE DELLA PAGINA ------------->
( tra i tag <head> e </head> )



<meta http-equiv="imagetoolbar" content="no">
<script language="javascript" src="nocopy.js"></script>




<!-------------- FINE CODICE DA COPIARE NELL'INTESTAZIONE DELLA PAGINA ------------->


CAMBIA LO SFONDO

tra i tag hed--hed

<script LANGUAGE="JavaScript">
</script>

---------------------------------------------------------------------------
seconda fase copia tra body e body

<body background="neutro.jpg" name="bg">

<p align="center"><img src="java.gif" width="57" height="88" alt="java.gif (21595 byte)"></p>
<div align="center"><center>

</center></div><div align="center"><center>


CAMBIA COLORE ALLA PAGINA WEB

<div align="center"><center><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="292" height="1">
<tr><p align="center"><TD bgColor=#000000 width="45" height="1"><A onmouseover="document.bgColor='#000000'" 
title=#000000 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#000080 width="45" height="1"><A onmouseover="document.bgColor='#000080'" 
title=#000080 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#008000 width="45" height="1"><A onmouseover="document.bgColor='#008000'" 
title=#008000 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#800000 width="45" height="1"><A onmouseover="document.bgColor='#800000'" 
title=#800000 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#c0c0c0 width="46" height="1"><A onmouseover="document.bgColor='#C0C0C0'" 
title=#C0C0C0 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#0000ff width="46" height="1"><A onmouseover="document.bgColor='#0000FF'" 
title=#0000FF style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#00ff00 width="46" height="1"><A onmouseover="document.bgColor='#00FF00'" 
title=#00FF00 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#ff0000 width="46" height="1"><A onmouseover="document.bgColor='#FF0000'" 
title=#FF0000 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#808080 width="46" height="1"><A onmouseover="document.bgColor='#808080'" 
title=#808080 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#800080 width="46" height="1"><A onmouseover="document.bgColor='#800080'" 
title=#800080 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#008080 width="46" height="1"><A onmouseover="document.bgColor='#008080'" 
title=#008080 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#808000 width="46" height="1"><A onmouseover="document.bgColor='#808000'" 
title=#808000 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#ffffff width="46" height="1"><A onmouseover="document.bgColor='#FFFFFF'" 
title=#FFFFFF style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#ff00ff width="46" height="1"><A onmouseover="document.bgColor='#FF00FF'" 
title=#FF00FF style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD>
<TD bgColor=#00ffff width="34" height="1"><A onmouseover="document.bgColor='#00FFFF'" 
title=#00FFFF style="TEXT-DECORATION: none" 
href="http://www."> 
</A>
<TD bgColor=#ffff00 width="38" height="1"><A onmouseover="document.bgColor='#FFFF00'" 
title=#FFFF00 style="TEXT-DECORATION: none" 
href="http://www."> 
</A></TD></td></tr></table></center></div>


INSERIRE MUSICA DI SOTTOFONDO ALLA PAGINA WEB

JavaScript™
Gestione della musica 6

SCEGLI LA MUSICA DI SOTTOFONDO
Autore: di pubblico dominio


Con questo JavaScript™ puoi far scegliere ai tuoi visitatori quale brano ascoltare mentre navigano 
nel tuo sito. Molto compatto perché realizzato con il supporto di un menù a tendina, puoi inserire 
tutti i file midi che preferisci precisandone il titolo negli appositi campi del modulo. Per poterlo usare 
dovrai solo personalizzarlo con i tuoi file musicali preferiti. Liberamente utilizzabile in ogni genere 
di sito.



L'inserimento del codice avviene in DUE fasi.


PRIMA FASE
<!------------- INIZIO CODICE DA COPIARE NELL'INTESTAZIONE DELLA PAGINA -------------->
( tra i tag <head> e </head> )



<script LANGUAGE="JavaScript">
<!-- Begin
songNum = new Array();
songNum[0] = "#";
songNum[1] = "midi/asturias.mid";
songNum[2] = "midi/fuente.mid";
songNum[3] = "midi/gloria.mid";
songNum[4] = "midi/almora.mid";

var music = null;
var track = 0;
var ver = navigator.appName;
function audioCheck(plugName) {
for (var i = 0; i < navigator.plugins.length; i++) {
if (navigator.plugins[i].name.toLowerCase() == plugName.toLowerCase()) {
for (var j = 0; j < navigator.plugins[i].length; j++) {
if (navigator.plugins[i][j].enabledPlugin) {
return true;
}
}
return false;
}
}
return false;
}
function chooseSong(s) { // ie
track = s.options[s.selectedIndex].value; 
if (ver == "Microsoft Internet Explorer") {
document.all.music.src = songNum[track]; 
} else {
songPlay('play');
}
}
function songPlay(cmd) { // netscape
if (audioCheck("LiveAudio")) {
if (cmd == 'play') {
document.musicSource.play(false, songNum[track]);
}
} else {
alert("Non hai i plugins necessari!");
}
}
// End -->
</script>



<!-------------- FINE CODICE DA COPIARE NELL'INTESTAZIONE DELLA PAGINA --------------->




SECONDA FASE
<!------------------- INIZIO CODICE DA COPIARE NEL CORPO DELLA PAGINA -------------------->
( tra i tag <body> e </body> )



<form name="choose">
<div align="center"><center><p><select size="1" name="track" onChange="chooseSong(this);">
<option value="0">Scegli la tua musica</option>
<option value="1">asturias</option>
<option value="2">fuente</option>
<option value="3">gloria</option>
<option value="4">almora</option>
</select> </p>
</center></div>
</form>
<script language="JavaScript">
<!-- Begin
var ver = navigator.appName;
if (ver == "Microsoft Internet Explorer") {
document.write('<bgsound src="#" ID=music loop=1 AUTOSTART=true>');
} else {
document.write('<embed type="audio/midi" src="imagine.mid" AUTOSTART=false hidden=true VOLUME="90" name="musicSource" MASTERSOUND></EMBED>');
}
// End -->
</script>



<!--------------------- FINE CODICE DA COPIARE NEL CORPO DELLA PAGINA -------------------->



per avere questo script SEGNALA AD UN AMICO  copia e incolla questi codici


copiamo questo codice all'interno del tag head nella pagina in cui vogliamo inserire il modulo:

 

<script language="JavaScript" type="text/javascript">
// Prelevato su http://web-link.it
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header
var good;
// var url = "www.centoxcento.cjb.net";
function checkEmailAddress(field) {
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
if (goodEmail){
good = true
} else {
alert('Inserire un indirizzo e-mail valido.')
field.focus();
field.select();
good = false;
}
}

u = window.location;
// u = url;
m = "Ti segnalo questo sito";
function mailThisUrl(){
good = false
checkEmailAddress(document.eMailer.address)
if (good){
window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+document.title+" "+u;
}
}
// -->
</SCRIPT>


In seguito copiamo quest'altro blocco di codice, all'interno del tag body, nella posizione in cui vogliamo che compaia il box:

<form name="eMailer">
<font color="#FF0000" size="2" face="Verdana"><strong>SEGNALA QUESTO SITO AD UN AMICO</strong></font><br>
<font color="#0000cc" size="2">Introduci l'e-mail del destinatario:</font><br>
<input type="text" name="address" size="40"><br>
<input type="submit" value="Segnala" onClick="mailThisUrl()">
</form>


script per inserire musica di sottofondo
 
<BGSOUND SRC="vabene.mid" LOOP="infinite"> 

------------------------------------------------------------------------------------

Per inserire un filmato

<EMBED src="badile.avi" WIDTH="200" HEIGHT="200" AUTOSTART="true" > 
------------------------------------------------------------------------------------------------------



Per creare una descrizione o un breve commento
da visualizzare quando si arresta il puntatore su 
un collegamento ipertestuale, fare così

----------------------------------------------------

><img border="0"alt="scrivi quì il testo" src="

dopo img border ="0" scrivi ALT=" testo"
----------------------------------------------------

Per inserire un mp3 nel tuo sito

-------------------------------------------------------

<BGSOUND SRC="" LOOP=INFINITE>
<EMBED src="tuo.mp3" WIDTH="145" HEIGHT="35" AUTOSTART="true" LOOP="true">

-----------------------------------------------------------------------------

<marquee>SCRITTA SCORREVOLE INSERISCI IL TESTO</marquee>

inserire all'interno dei marquee il (testo) che  per avere questo risultato


SCRITTA SCORREVOLE INSERISCI IL TESTO


















 


 
CALENDARIO