sigo sigo...jeje:
*Código JavaScript para que aparezca un alert al utilizar el botón derecho
-----------------------------------------------------------------------------------
<script language="JavaScript">
<!-- Begin
function right(e) {
var msg = " [
www.miweb.com ] ";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg); // Delete this line to disable but not alert user
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg); // Delete this line to disable but not alert user
return false;
}
return true;
}
document.onmousedown = right;
// End -->
</script>
-----------------------------------------------------------------------------------
*Se abre una ventana al utilizar el botón derecho
-----------------------------------------------------------------------------------
<SCRIPT language=JavaScript>
function right(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) {
a=window.open("
http://www.elhacker.net/","WindowName","width=640,height=600,top=40,left=50,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
a=window.open("
http://www.elhacker.net/","WindowName","width=640,height=600,top=40,left=50,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");
return false;
}
return true;
}
document.onmousedown=right;
window.onmousedown=right;
</SCRIPT>
-----------------------------------------------------------------------------------
*Para páginas con frames, no permite ver sólo un frame sino los dos frames o más juntos. (Colocar el código en cada frame)
-----------------------------------------------------------------------------------
<script LANGUAGE="JavaScript">
<!--
if (top == self) self.location.href = "
http://www.miweb.com";
// -->
</script>
-----------------------------------------------------------------------------------
*Para webs sin frames, mantiene tu página en primer plano, y no puede estar en frames de otro "listillo"
-----------------------------------------------------------------------------------
<SCRIPT LANGUAGE="JavaScript">
<!--- Se esconde el codigo a navegadores sin JS
if (window != window.top)
top.location.href = location.href;
// -->
</SCRIPT>
-----------------------------------------------------------------------------------
*Variación del anterior
-----------------------------------------------------------------------------------
<SCRIPT LANGUAGE="Javascript">
<!---
if (parent.frames.length)
top.location.href= document.location;
// --->
</SCRIPT>
-----------------------------------------------------------------------------------
Personalización de la Web
*Para hacer la Página de Inicio
-----------------------------------------------------------------------------------
<a href="#" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('
http://www.miweb.com');return false">Página de inicio</a>
-----------------------------------------------------------------------------------
*Añadir a Favoritos
-----------------------------------------------------------------------------------
<SCRIPT LANGUAGE="JavaScript">
<!--
function addBookmark()
{
if (window.external)
external.AddFavorite("
http://www.miweb.com", "H a c k i n g w i t h d i S H I T a l")
else
alert("Tu navegador no soporta esta caracteristica");
}
// -->
</SCRIPT>
-----------------------------------------------------------------------------------
*Cambiar las barras de scroll (colocar siempre en el style) (puedes hacer infinitas variaciones cambiando color, tamaño, etc)
-----------------------------------------------------------------------------------
<style>
<!--
BODY { scrollbar-base-color : #000000;
scrollbar-arrow-color : #FFFFFF; }
.nav {
color : #FFCC00;
font-size : 8pt;}
-->
</style>
-----------------------------------------------------------------------------------
*Otro ejemplo:
-----------------------------------------------------------------------------------
<STYLE type=text/css>BODY {
SCROLLBAR-FACE-COLOR: #333333; SCROLLBAR-HIGHLIGHT-COLOR: #444444; SCROLLBAR-SHADOW-COLOR: #111111; SCROLLBAR-3DLIGHT-COLOR: #333333; SCROLLBAR-ARROW-COLOR: #ffffce; SCROLLBAR-TRACK-COLOR: #000000; SCROLLBAR-DARKSHADOW-COLOR: black
}
</STYLE>
Escribir en el "Status" del Navegador y hacer mover el "Title"
-----------------------------------------------------------------------------------
*Que se vaya moviendo las palabras del status
-----------------------------------------------------------------------------------
<SCRIPT languague="JavaScript">
<!--
var cuenta=0
var texto=" Lo que te de la gana "
function scrolltexto () {
window.status=texto.substring (cuenta,texto.length)+ texto.substring(0,cuenta)
if (cuenta <texto.length){ cuenta ++
}else{
cuenta=0
}
setTimeout("scrolltexto()",150)
}
scrolltexto ()
//-->
</SCRIPT>
-----------------------------------------------------------------------------------
*Te enseña la hora y el texto que quieras en la barra del status
-----------------------------------------------------------------------------------
<script language="JavaScript">
<!--
mensaje=" |======| .: m i w e b . c o m :. "
function hora() {
var h = new Date();
window.status="|======| "
+ h.getHours() +":"+ h.getMinutes() +"" +mensaje ;
window.setTimeout('hora()',100);
}
hora()
//-->
</script>
-----------------------------------------------------------------------------------
*Varias frases o texto desplanzadose por el status
-----------------------------------------------------------------------------------
<head>
<SCRIPT>
<!--
var ShowString = " " //La primera linea tiene que estar en blanco
+ "Aquí la frase 1 " //Puedes añadir mas frases, aparte de estas 3
+ "Aquí la frase 2 "
+ "Aquí la frase 3 "
+ "Ejemplo de otra frase "
var ShowWidth = 100
var ShowHead = 0
var ShowTail = ShowWidth
var ShowLength = ShowString.length
function Marquee ()
{
var DisplayString
if (ShowHead < ShowTail)
DisplayString = ShowString.substring(ShowHead, ShowTail)
else
DisplayString = ShowString.substring(ShowHead, ShowLength)
+ ShowString.substring( 0, ShowTail)
ShowHead = (ShowHead + 1 ) % ShowLength
ShowTail = (ShowTail + 1 ) % ShowLength
window.status = DisplayString
TimerID = setTimeout("Marquee()", 100) //Cambia el numero para cambiar la velocidad
}
//-->
</SCRIPT>
</head>
-----------------------------------------------------------------------------------
*Escribir en "Title" y hacer que se maya moviendo cada X segundos.
-----------------------------------------------------------------------------------
<SCRIPT LANGUAGE="JavaScript">
var txt=" lo que quieras - wwww.miweb.com -";
var espera=200;
var refresco=null;
function rotulo_title() {
document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0);
refresco=setTimeout("rotulo_title()",espera);}
rotulo_title();
</SCRIPT>
-----------------------------------------------------------------------------------
*Terremoto (que la pantalla tiemble y se mueva)
-----------------------------------------------------------------------------------
<!-- para llamarlo con un botón-->
<INPUT onclick=shake(40) type=button value=""Terremoto"">
<SCRIPT language=JavaScript1.2>
<!-- Begin
function shake(n) {
if (n==1)
{document.body.bgColor = "#0000DA";
}
else
{document.body.bgColor = "#FF8C00"
}
if (self.moveBy) {
for (i = 15; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
}
// End -->
</SCRIPT>
-----------------------------------------------------------------------------------
bueno, eso es por ahora, se vemos..........salu2..... :twisted: