Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/plugins/avatarep.php on line 1102

Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
anuncio en el theme Hunter X
Páginas (2):    1 2
johan22728   4 Jul, 2015, 5:10 pm
#11
(4 Jul, 2015, 4:55 pm)angeluz escribió: Lo del fondo puedes hacerlo Aquí o si lo quieres igual...


Código PHP:
<?php 
  font
-size: 12px;
  background: -o-linear-gradient(left top, #0000000000000000000000 13%, #B2CC7A 100%);
  background: -moz-linear-gradient(left top, #000000000000000000 13%, #B2CC7A 100%);
  background: -webkit-linear-gradient(left top, #169EAB 13%, #169EAB 100%);
  background: -ms-linear-gradient(left top, #D6EDA5 13%, #B2CC7A 100%);
  padding: 10px;
  text-align: center;
  color: #FFFFFF;
  margin: auto;
  margin-left: 5px;
  width: 97%;
  border: 1px solid #169EAB;
  font-family: didact gothic;
  box-shadow: 0 1px rgba(255, 255, 255, 0.3) inset;

Ese es es el código css

Y este es el código js:

Código PHP:
<?php 
<script type="text/javascript">
jQuery.noConflict(); // Ésto se aplica para no tener ningún tipo de error con otro código jQuery

this.randomtip = function(){

    var pause = 12000; // Acá definirán el retraso en el cambio de texto en milisegundos
    var length = jQuery("#tips li").length;
    var temp = -1;        

    this
.getRan = function(){
        var ran = Math.floor(Math.random()*length) + 1;
        return ran;
    };
    this.show = function() {
        var ran = getRan();
        while (ran == temp) { // Ésto es para que no se repita el mismo texto por más aleatorio que fuere
            ran = getRan();
        };
        temp = ran;
        jQuery("#tips li").hide();
        jQuery("#tips li:nth-child(" + ran + ")").fadeIn("slow");
    };

    show(); setInterval(show,pause);

};

jQuery(document).ready(function(){
    randomtip();
});
</
script>



Addio!!!



este codigo es para que ?
angeluz   4 Jul, 2015, 5:41 pm
#12
Solucionado...

Borraste jQuery que hacía funcionar los mensajes...

2 consejos:
1.- NO toques JAMÁS la plantilla headerinclude destruirás tu foro.
2.- Trata de ser más original y no copiar todo a otros foros.

Addio!!!
johan22728   4 Jul, 2015, 5:48 pm
#13
(4 Jul, 2015, 5:41 pm)angeluz escribió: Solucionado...

Borraste jQuery que hacía funcionar los mensajes...

2 consejos:
1.- NO toques JAMÁS la plantilla headerinclude destruirás tu foro.
2.- Trata de ser más original y no copiar todo a otros foros.

Addio!!!

gracias x la ayuda se lo agradesco


me gusto mucho lo que hisiste x mi gracias
Páginas (2):    1 2
  
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.