Jump to content

Ayuda con menu


Recommended Posts

Hola amigos, soy nuevo en esto de las paginas web y tengo una duda

 

he visto algunas web que tienen una opcion de agrandar o achicar el tamaño de las fuentes, como se hace eso?

ojala me puedan ayudar con eso y lo otro es si me pueden ayudar con un script php para subir un curriculum desde la pagina web y este se guarde en el servidor.

 

Desde ya muchas gracias!

Link to comment
Share on other sites

manejas las fuentes desde css con %

entonces la normal es 100% la mayor es 125% y la inferior 75% por ejemplo.

 

Saludos

 

excactamente como dice coke_clown, aca te dejo un ejemplo

 

<html>
    <head>
        <script>
        function cambiar(n){
        document.getElementById('cuerpo').style.fontSize=n+"%";
        }
        </script>
    </head>
    <body id="cuerpo">
    hola
        <br/>
        <input type="button" onclick="cambiar(125)" value="Agrandar fuente" /><br/>
        <input type="button" onclick="cambiar(75)" value="Achicar fuente" />
    </body>
</html>

 

Prueba con eso, deberias andar a full

Link to comment
Share on other sites

Gracias!. pero si las fuentes desde el css estan en pixeles y no en % se puede hacer o no? y como? Gracias.

 

de la misma forma:

 

<html>
    <head>
        <script>
        function cambiar(n){
        document.getElementById('cuerpo').style.fontSize=n+"px";
        }
        </script>
    </head>
    <body id="cuerpo">
    hola
        <br/>
<input type="button" onclick="cambiar(36)" value="Agrandar fuente" /><br/>
        <input type="button" onclick="cambiar(8)" value="Achicar fuente" />
    </body>
</html>

Link to comment
Share on other sites

  • 2 weeks later...

No me funciona, tenia otro que estaba funcionando pero le cambie los textos con el dreamweaver y ahora no funciona.

 

Ayuda plis!!

 

CODE JAVASCRIPT

<script type=text/javascript>
<!--
var newsfont = 16;
function changeFont(id) {

if (document.getElementById) {
document.getElementById(id).style.fontSize = newsfont+"px";
} else {
if (document.layers) {
document.layers[id].fontSize = newsfont+"px";
} else {
if (document.all) {
eval("document.all." + id + ".style.fontSize = \"" + newsfont + "px \"");
}
}
}

// esto arregla scroll al utilizar layers
// updateHeight();
setCookie();
}
// aqui se produce el error
function larger() {
if (newsfont < 20) {
newsfont= newsfont +1;
changeFont('content');
}
}

function smaller() {
if (newsfont > 10) {
newsfont= newsfont -1;
changeFont('content');
}
}
//-->
</script>

 

Y ACA LO EJECUTO:

<h2>CERTIFICADO DE GARANTIA TOTAL REAL</h2>
                
        <p><span class="Estilo146">Regula el tamaño del texto </span>: <a onmousedown='larger()' href='java script:void(0);'><img src='images/textograndezt2.gif'' alt='Aumentar texto' border='0' align="absmiddle" title='Aumentar texto' /></a>
          <a onmousedown='smaller()' href='java script:void(0);'><img src='images/textopequevz6.gif'' alt='Disminuir texto' border='0' align="absmiddle" title='Disminuir texto' /></a></p><p></p>
         
        <table cellspacing="0" cellpadding="0" id="content">

.... BLA BLA BLA...

 

Esos son los codes, antes funcionaba bien pero cambie el texto desde la ventana Diseño del dreamweaver y ahora no funciona :nopuedeser: :nopuedeser: :nose::nose: :angry: :angry: :angry: :angry: :angry: :angry:

 

 

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...