Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje10-08-2008, 23:08 (UTC)    
Título del mensaje: [CODIGOS] Codigos utiles

LISTA DE CODIGOS

SOLO MODIFICAR LO QUE ESTA EN AZUL


Redireccionar página pasados unos segundos
Cita:

<html>
<head>

</head>

<body style="font:bold 10px/15px verdana;color:navy">
<script>
//Team-webmaster.es.tl


var segundos=3
var direccion='http://www.team-webmaster.es.tl'
var mensaje="Nos hemos trasladado."

milisegundos=segundos*1000
window.setTimeout("window.location.replace(direccion);",milisegundos);
document.write(mensaje+" Si pasados "+segundos+ " segundos no es redireccionado pinche <a href='"+direccion+"'>aquí</a>.");
</script>

</body>
</html>


Tipo y versión del navegador
Cita:

<html>
<head>
<script LANGUAGE="JavaScript">

var sBrowser;
var sVersion;

function setBrowserType(){
var aBrowFull = new Array("opera", "msie", "netscape", "gecko", "mozilla");
var aBrowVers = new Array("opera", "msie", "netscape", "rv", "mozilla" );
var aBrowAbrv = new Array("op", "ie", "ns", "mo", "ns" );
var sInfo = navigator.userAgent.toLowerCase();;

sBrowser = "";
for (var i = 0; i < aBrowFull.length; i++){
if ((sBrowser == "") && (sInfo.indexOf(aBrowFull[i]) != -1)){
sBrowser = aBrowAbrv[i];
sVersion = String(parseFloat(sInfo.substr(sInfo.indexOf(aBrowVers[i]) + aBrowVers[i].length + 1)));
}
}
}

setBrowserType();

function getBrowserName(){
return sBrowser;
}

function getBrowserVersion(){
return sVersion;
}

</script>
</head>
<body>
<script language="JavaScript">
setBrowserType();
document.write("Browser: " + getBrowserName() + "<br>");
document.write("Versión: " + getBrowserVersion() + "<br><br>" );
</script>
</body>
</html>


Buscador Web en mi sitio
Cita:
<body>
<tr>
<td width="100%">
<p align="center">&nbsp;</td>
</tr>
<tr>
<td width="100%">&nbsp;</td>
</tr>
<tr>
<td width="100%" style="text-indent: 0" height="19">
<span lang="es"><script language="JavaScript">
<!--

function startSearch(){
searchString = document.searchForm.searchText.value;
if(searchString != ""){
searchEngine = document.searchForm.whichEngine.selectedIndex + 1;
finalSearchString = "";

if(searchEngine == 1){
finalSearchString = "http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&q=" + searchString;
}
if(searchEngine == 2){
finalSearchString = "http://av.yahoo.com/bin/query?p=" + searchString + "&hc=0&hs=0";
}
if(searchEngine == 3){
finalSearchString = "http://www.excite.com/search.gw?trace=a&search=" + searchString;
}
if(searchEngine == 4){
finalSearchString = "http://www.hotbot.com/?SW=web&SM=MC&MT=" + searchString + "&DC=10&DE=2&RG=NA&_v=2&act.search.x=89&act.search.y=7";
}
if(searchEngine == 5){
finalSearchString = "http://www.infoseek.com/Titles?qt=" + searchString + "&col=WW&sv=IS&lk=noframes&nh=10";
}
if(searchEngine == 6){
finalSearchString = "http://www.lycos.com/cgi-bin/pursuit?adv=%26adv%3B&cat=lycos&matchmode=and&query=" + searchString + "&x=45&y=11";
}
if(searchEngine == 7){
finalSearchString = "http://netfind.aol.com/search.gw?search=" + searchString + "&c=web&lk=excite_netfind_us&src=1";
}

location.href = finalSearchString;
}
}


// -->
</script>

<basefont face="Verdana, Arial, sans-serif">

</span>

<form name="searchForm">

<div align="center">
<center>

<table width=323 border="2" cellpadding=3 cellspacing=0 bgcolor=444444 style="border-collapse: collapse" bordercolor="#111111">

<tr>
<td bgcolor=lightblue width="148"><font size="1"><span lang="es">Buscar por:</span></font><font size=1 face="Verdana, Arial, sans-serif"><span lang="es"><br>

</span>
<td bgcolor=lightblue width="96"><font size="1"><span lang="es">Buscar desde:</span></font><span lang="es"><td bgcolor=lightblue width="90">

<tr>
<td bgcolor=navajowhite width="148">
<input style="background: dddddd" name="searchText" type="text" size="20">
<td bgcolor=navajowhite width="96">
<select style="background: dddddd" name="whichEngine">
<option selected>Altavista
<option>Yahoo!
<option>Excite
<option>Hotbot
<option>Infoseek
<option>Lycos
<option>AOL Netfind
</select>
<td bgcolor=navajowhite width="90">
<input type="button" value="Buscar " onClick="startSearch()">

</select>
</table>
</center>
</div>
</form>

</span>&nbsp;</td>
</tr>
</body>
</html>


Impedir que lean el código fuente
Cita:
<frame>
<noframes>
</frame>
</noframes>


Evitar que vuelvan a la página anterior.
Cita:
<script>
//[TW]

// /////////////// EN EL HEAD ///////////////////

if (history.forward(1)){location.replace(history.forward(1))}

</script>


Poner texto vertical (sólo IE+)
Cita:
<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(15, 0, 0);
}

function eje2() {
pepe.Rotate(0, 15, 0);
}

function eje3() {
pepe.Rotate(0, 0, 15);
}
</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
-->


Una imagen linkable cada semana
Cita:

APARTIR DE LAS LETRAS AZULES DE ESTE CODIGO PUEDES MIDIFICAR LOS OTROS CAMPOS PARESIDOS

Cita:
<html>
<head>

<script>
//[TW]

var bisiesto=0 //Si es año bisiesto pon 1

enlace=new Array;
alt=new Array;
imagen=new Array;

//-------ENLACES ALT E IMAGEN PARA CADA SEMANA------------

enlace[1]="http://www.loslunesalsol.com/";
alt[1]="esta es la imagen del lunes"
imagen[1]="http://www.cartelia.net/fotos/l/loslunesalsol.jpg"

enlace[2]="http://www.martes.com";
alt[2]="esta es la imagen del martes";
imagen[2]="http://www.martes.com/images/marteshomesk.gif";

enlace[3]="http://www.wednesday.com";
alt[3]="Esta es la imagen del miércoles"
imagen[3]="http://www.wednesday.com/images/logo.gif";

enlace[4]="http://www.thursday.com/";
alt[4]="Es que en español no había..."
imagen[4]="http://www.thursday.com/5.jpg";

enlace[5]="http://www.tgifridays.com/index1.html";
alt[5]="No podía ser de otra forma!";
imagen[5]="http://www.tgifridays.com/index_files/newindex.gif";

enlace[6]="http://www.sabado.info";
alt[6]="Te gusta la música?";
imagen[6]="http://www.sabado.info/image/guitar.gif";

//_---------SEGUIR HASTA LA SEMANA 52--------------------------

//----------NO EDITAR A PARTIR DE AQUÍ---------------------
var cantidadDeDias=0;
var semana=1
diaspormes=new Array(31,28+bisiesto,31,30,31,30,31,31,30,31,30,31
);
hoy=new Date;
anio=hoy.getYear()
primero=new Date(anio,0,1)
diasem=primero.getDay()
dia=hoy.getDate();
mes=hoy.getMonth();
for (a=0;a<mes;a++){
cantidadDeDias=cantidadDeDias+diaspormes[a]
}
cantidadDeDias=cantidadDeDias+dia;
for (a=0;a<cantidadDeDias;a++){
diasem=diasem+1
if (diasem>6){diasem=0;semana=semana+1}
}
//---------------------------------------------------------
</script>

</head>

<body>
<script>
document.write("<A HREF="+enlace[semana]+"><img src="+imagen[semana]+" ALT='"+alt[semana]+"'></A>");
</script>
</body>
</html>

______________


Ultima edición por team-webmaster el Dom Ago 10, 2008 7:19 pm; editado 2 veces
Mensaje10-08-2008, 23:17 (UTC)    
Título del mensaje:

el buscador funciona perfecto
lo de inpedir que lean el codigo de fuente no se puede
______________

Mensaje10-08-2008, 23:20 (UTC)    
Título del mensaje:

imediax escribió:
el buscador funciona perfecto
lo de inpedir que lean el codigo de fuente no se puede


SOLO FUNCIONA EN IE
______________
Mensaje14-08-2008, 02:36 (UTC)    
Título del mensaje: Muy buenos códigos.

Oye hiciste un gran aporte a todos nosotros, cuando váz postear mas.
Mensaje14-08-2008, 18:07 (UTC)    
Título del mensaje: Re: Muy buenos códigos.

pasatiempoenlinea escribió:
Oye hiciste un gran aporte a todos nosotros, cuando váz postear mas.


jeje noc lla que mi pc esta dañada
______________
[TW]...« ıllı.l.ı.★™DȜS!GN™★.ı.l.ıllı »...[TW]

║▌│ █│║▌║█││█║▌│█║▌║
LuX.M™ 2 7 9 2 6 2 5 2 7 2 8 6

«★Team Webmaster ★»
«★Eni3a★»
«★Team Iceblue★»
«★Mundo TW★»
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group