ClsHack:Computer Security Blog    

JavaScript:Zoom sul testo (ingrandisci font)


Non so se l’avete notato ma da stamattina è comparsa sul sito una nuova funzione.

Come vedete dall’immagine,da oggi è possibile cambiare le dimensioni del testo.

Il sorgente javascript è composto da semplici righe e non ha bisogno di spiegazioni.


function ingrandisci (){
        document.body.style.fontSize = "20px";
}
function riduci (){
        document.body.style.fontSize = "10px";
}
function normale (){
        document.body.style.fontSize = "13px";
}

Fatto ciò possiamo richiamare le nostre funzioni:
OnClick=FUNZIONE JAVASCRIPT()

Related posts:

  1. [javascript]Seleziona sfondo
  2. Aggiungiamo: Anteprima Articolo a wordpress
  3. LiveTyping:crea online gif che simulano il testo scritto

This entry was posted on Saturday, August 29th, 2009 at 11:20 am and is filed under Programming. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Tagged with: