Ver Mensaje Individual
  #99 (permalink)  
Antiguo 05/02/2003, 06:45
Avatar de DanielRey
DanielRey
Usuario no validado
 
Fecha de Ingreso: enero-2001
Ubicación: Mendoza
Mensajes: 630
Antigüedad: 23 años, 3 meses
Puntos: 1
99 - Poner texto vertical (sólo IE 5.0 +)

Poner texto vertical, al revés, rotarlo, que vuele, lo que quieras.

Para ver el original:
http://www.24fun.com/downloadcenter/...extwheel2.html
No te lo pierdas!!! es alucinante.

Código PHP:
<center>
<
OBJECT ID="pepe"
 
CLASSID="CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6"
 
STYLE="position:relative; width:300px; height:200 px">
        <
PARAM NAME="Line0001" VALUE="SetLineStyle(1)">
        <
PARAM NAME="Line0002" VALUE="SetLineColor(0,0,0)">
    <
PARAM NAME="Line0003" VALUE="SetFillColor(255,128,0)">
    <
PARAM NAME="Line0004" VALUE="SetFont('Arial', 20, 0, 0, 1, 0)">
    <
PARAM NAME="Line0005" VALUE="Text('Foros del Web', 0, 0, 0)">
    </
OBJECT>
<
script>
function 
eje1() {
  
pepe.Rotate(1500);
}

function 
eje2() {
  
pepe.Rotate(0150);
}

function 
eje3() {
  
pepe.Rotate(0015);
}
</script>
<input type=button onClick=eje1(); value="eje 1">
<input type=button onClick=eje2(); value="eje 2">
<input type=button onClick=eje3(); value="eje 3">
<!--
SetLineStyle(valor)
valor=0 => Sin línea de contorno de texto.
valor=1 => Línea continua
valor=2 => Linea discontinua

SetLineColor(R, G, B)
Intensidad del color (R=rojo, G=verde, B=azul)
de 0 a 255 de la linea de contorno de texto.

SetFillColor(R, G, B)
Intensidad del color (R=rojo, G=verde, B=azul)
del relleno del texto

SetFont('font', Tam, B, It, Sub, Tach)
font: Arial, Verdana, etcétera
Tam: El tamaño de la letra
B: 0=> Normal; 1=> Bold.
It: 0=> Normal; 1=> Itálica.
Sub: 0=> Normal; 1=> Subrayado
Tach: 0=> Normal; 1=> Tachado

Text('texto', H, V, R)
texto: El texto que se muestra
H: Posición horizontal inicial
V: Posición vertical inicial
R: Rotación plana inicial
-->