Ver Mensaje Individual
  #14 (permalink)  
Antiguo 05/06/2013, 13:59
adrian_hm13
 
Fecha de Ingreso: mayo-2013
Mensajes: 47
Antigüedad: 11 años, 6 meses
Puntos: 2
Respuesta: No carga el jquery en wordpress

Acabarás hasta los ****** de mi pero bueno xDDD, mira que he puesto todo esto seguidito y despues del <head>

y nada me construye el objeto pero ni hace animaciones ni está en el sitio ni nada! xD

Código HTML:
Ver original
  1. <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  2. <script src="/wp-includes/js/jquery.scrollUp.min.js"></script>
  3. $(function () {
  4.   $.scrollUp({
  5.     scrollName: 'scrollUp', // Element ID
  6.     topDistance: '300', // Distance from top before showing element (px)
  7.     topSpeed: 300, // Speed back to top (ms)
  8.     animation: 'fade', // Fade, slide, none
  9.     animationInSpeed: 200, // Animation in speed (ms)
  10.     animationOutSpeed: 200, // Animation out speed (ms)
  11.     scrollText: 'Scroll to top', // Text for element
  12.     activeOverlay: false, // Set CSS color to display scrollUp active point, e.g '#00FFFF'
  13.   });
  14. });
  15.  
  16. <div id="scrollUp" style="width:100px;height:100px;background-color:#000;position:absolute;bottom:0px;right:0px;">Scroll</div>