CÓDIGOS

CÓDIGOS APLICADOS AL BLOG

  1. Mensaje: Sirve para que cuando un visitante salga o entre a tu web, salga un mensaje de despedida  y bienvenida. <BODY onLoad="alert('Bienvenido a mi web');" onUnLoad="confirm('Gracias por tu visita, espero que no sea la última');">
  2. Sonido o melodía: Permite insertar un sonido o melodía, para que los visitantes pueden escucharla. <!-- SCM Music Player http://scmplayer.net --> <script type="text/javascript" src="http://scmplayer.net/script.js"  data-config="{'skin':'skins/cyber/skin.css','volume':100,'autoplay':false,'shuffle':false,'repeat':1,'placement':'top','showplaylist':true,'playlist':[{'title':'counting stars','url':'https://www.youtube.com/watch?v=hT_nvWreIhg'},{'title':'rather be ','url':'https://www.youtube.com/watch?v=m-M1AtrxztU'},{'title':'Send me on my way','url':'https://www.youtube.com/watch?v=IGMabBGydC0'}]}" ></script <!-- SCM Music Player script end -->
  3. Cursor-mira: Transforma el cursor en una mira. <style type="text/css">  <!--body { cursor: crosshair} --> </style>
  4. Lluvia: Permite que los visitantes de la página web, puedan apreciar gotas de agua cayendo desde la parte superior de tu página  <!-- This Script is from www.htmlfreecodes.com, Provided by: Mahmood Bina --> <script type='text/javascript' src='http://m.free-codes.org/g.php?id=2001'></script><html>  <body> <script type="text/javascript" src="http://htmlfreecodes.com/codes/rain.js"></script> </body><a target="_blank" href="http://websmile.ir" style="text-decoration:none;bottom:0;left:10px;font-size:5pt;color:gray;position:absolute">طراحی ارزان سایت</a><a target="_blank" href="http://www.htmlfreecodes.com" style="font-size: 8pt; text-decoration: none">Html Codes</a>
  5. Hora y Fecha: Permite insertar un reloj, que ayuda a los visitantes a estar informados de la hora y también de la fecha. <color=#000000><script language="JavaScript">  
    //http://www.granhermano2011-envivo.blogspot.com/ 
    function fecha(){ 
    fecha = new Date() 
    mes = fecha.getMonth() 
    diaMes = fecha.getDate() 
    diaSemana = fecha.getDay() 
    anio = fecha.getFullYear() 
    dias = new Array('Domingo','Lunes','Martes','Miercoles','Jueves','Viernes','Sabado') 
    meses = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre')
    document.write('<span id="fecha">') 
    document.write (dias[diaSemana] + ", " + diaMes + " de " + meses[mes] + " de " + anio)
    document.write ('</span>') 
    </script> 
    <style type="text/css">  
    <!-- 
    #fecha { 
        font-family: Tahoma, Verdana, Arial; 
        font-size: 12px; 
        color: #000000; 
            background :  
    --> 
    </style>  
    <script language="JavaScript">  
    function hora(){ 
    var fecha = new Date() 
    var hora = fecha.getHours() 
    var minuto = fecha.getMinutes() 
    var segundo = fecha.getSeconds() 
    if (hora < 10) {hora = "0" + hora} 
    if (minuto < 10) {minuto = "0" + minuto} 
    if (segundo < 10) {segundo = "0" + segundo} 
    var horita = hora + ":" + minuto + ":" + segundo 
    document.getElementById('hora').firstChild.nodeValue = horita 
    tiempo = setTimeout('hora()',1000) 
    function inicio(){ 
    document.write('<span id="hora">') 
    document.write ('000000</span>') 
    hora() 
    </script> 
    <style type="text/css">  
    <!-- 
    #hora { 
        width:100px; 
        font-family: Tahoma, Verdana, Arial; 
        font-size: 12px; 
        color: #000000; 
        background :  
        } 
    --> 
    </style>    
    <div align="center">  
    <b><script>fecha()</script></b></div> 
    <div align="center"> 
    <b><script>inicio()</script></b></div></color>



No hay comentarios:

Publicar un comentario