jQuery Timelinr

Pin It

Dando vida al tiempo / Giving life to time

Selecciona tu idioma / Select your language:

EN

This simple plugin helps you to give more life to the boring timelines. Supports horizontal and vertical layouts, and you can specify parameters for most attributes: speed, transparency, etc..

New version available, 0.9.5

Configuration:

  • Include the jQuery library and this plugin:
<script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="js/jquery.timelinr-0.9.js" type="text/javascript"></script>
  • Inicialize-it with the default parameters:
  • <script type="text/javascript">
       $(function(){
          $().timelinr();
       });
    </script>
  • Or configure it as preferred:
  • <script type="text/javascript"> 
       $(function(){
          $().timelinr({
             orientation: 'horizontal',
             // value: horizontal | vertical, default to horizontal
             containerDiv: '#timeline',
             // value: any HTML tag or #id, default to #timeline
             datesDiv: '#dates',
             // value: any HTML tag or #id, default to #dates
             datesSelectedClass: 'selected',
             // value: any class, default to selected
             datesSpeed: 'normal',
             // value: integer between 100 and 1000 (recommended) or 'slow', 'normal' or 'fast'; default to normal
             issuesDiv : '#issues',
             // value: any HTML tag or #id, default to #issues
             issuesSelectedClass: 'selected',
             // value: any class, default to selected
             issuesSpeed: 'fast',
             // value: integer between 100 and 1000 (recommended) or 'slow', 'normal' or 'fast'; default to fast
             issuesTransparency: 0.2,
             // value: integer between 0 and 1 (recommended), default to 0.2
             issuesTransparencySpeed: 500,
             // value: integer between 100 and 1000 (recommended), default to 500 (normal)
             prevButton: '#prev',
             // value: any HTML tag or #id, default to #prev
             nextButton: '#next',
             // value: any HTML tag or #id, default to #next
             arrowKeys: 'false',
             // value: true/false, default to false
             startAt: 1,
             // value: integer, default to 1 (first)
             autoPlay: 'false',
             // value: true | false, default to false
             autoPlayDirection: 'forward',
             // value: forward | backward, default to forward
             autoPlayPause: 2000
             // value: integer (1000 = 1 seg), default to 2000 (2segs)
          });
       });
    </script>

    HTML markup must be as follows:

    <div id="timeline">
       <ul id="dates">
          <li><a href="#">date1</a></li>
          <li><a href="#">date2</a></li>
       </ul>
       <ul id="issues">
          <li id="date1">
             <p>Lorem ipsum.</p>
          </li>
          <li id="date2">
             <p>Lorem ipsum.</p>
          </li>
       </ul>
       <a href="#" id="next">+</a> <!-- optional -->
       <a href="#" id="prev">-</a> <!-- optional -->
    </div>

    Icon designed by Sebastián Cortés

    Changelog:
    • 0.9.5: IE8 bug smashed while dates are animated (vertical); CSS updated: filter added due to IE8 bad-support of PNG transparency (#issues img)
    • 0.9.4: Added autoPlay, autoPlayPause and autoPlayDirection (disabled by default).
    • 0.9.3: Added startAt: select where do you want the timeline to start.
    • 0.9.3: Fixed bug with animation while pressing the navigation buttons.
    • 0.9.2: Fixed Firefox bug with event.preventDefault();
    • 0.9.1: Added keyboard navigation, see vertical demo.
    • 0.9.1: preventDefault(); added to arrows.
    • 0.9.1: Documentation improved.

    ES

    Este sencillo plugin ayuda a que le des más vida y estilo a las aburridas líneas de tiempo. Soporta diagramaciones horizontales y verticales, y puedes parametrizar la mayoría de los atributos: velocidades, transparencias, etc.

    Nueva versión disponible, 0.9.5

    Configuración:

    • Incluye la librería jQuery y luego este plugin:
    <script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
    <script src="js/jquery.timelinr-0.9.js" type="text/javascript"></script>
  • Inicialízalo con los parámetros por defecto:
  • <script type="text/javascript"> 
       $(function(){
          $().timelinr();
       });
    </script>
  • O customízalos:
  • <script type="text/javascript"> 
       $(function(){
          $().timelinr({
             orientation: 'horizontal',
             // valores: horizontal | vertical, por defecto horizontal
             containerDiv: '#timeline',
             // valores: cualquier etiqueta HTML ó #id, por defecto #timeline
             datesDiv: '#dates',
             // valores: cualquier etiqueta HTML ó #id, por defecto #dates
             datesSelectedClass: 'selected',
             // valores: cualquier clase, por defecto selected
             datesSpeed: 'normal',
             // valores: número entre 100 y 1000 (recomendado) ó 'slow', 'normal', 'fast', por defecto normal
             issuesDiv : '#issues',
             // valores: cualquier etiqueta HTML ó #id, por defecto #issues
             issuesSelectedClass: 'selected',
             // valores: cualquier clase, por defecto selected
             issuesSpeed: 'fast',
             // valores: número entre 100 y 1000 (recomendado)ó 'slow', 'normal', 'fast', por defecto fast
             issuesTransparency: 0.2,
             // valores: número entre 0 y 1 (recomendado), por defecto 0.2
             issuesTransparencySpeed: 500,
             // valores: número entre 100 y 1000 (recomendado), por defecto 500 (normal)
             prevButton: '#prev',
             // valores: cualquier etiqueta HTML ó #id, por defecto #prev
             nextButton: '#next',
             // valores: cualquier etiqueta HTML ó #id, por defecto #next
             arrowKeys: 'false',
             // valores: true/false, por defecto false
             startAt: 1,
             // valor: número entre 1 y el máximo de elementos, por defecto 1 (primero)
             autoPlay: 'false',
             // valor: true | false, por defecto false
             autoPlayDirection: 'forward',
             // valor: forward | backward, por defecto forward
             autoPlayPause: 2000
             // valor: número (1000 = 1 seg), por defecto 2000 (2segs)
          })
       });
    </script>

    El marcado HTML debe ser de la siguiente forma:

    <div id="timeline">
       <ul id="dates">
          <li><a href="#">date1</a></li>
          <li><a href="#">date2</a></li>
       </ul>
       <ul id="issues">
          <li id="date1">
             <p>Lorem ipsum.</p>
          </li>
          <li id="date2">
             <p>Lorem ipsum.</p>
          </li>
       </ul>
    <a href="#" id="next">+</a> <!-- opcional -->
    <a href="#" id="prev">-</a> <!-- opcional -->
    </div>

    Ícono diseñado por Sebastián Cortés

    Cambios:
    • 0.9.5: bug de IE8 aplastado cuando las fechas eran animadas (vertical); CSS mejorado: filter agregado por el mal soporte de IE8 con los PNG transparentes (#issues img)
    • 0.9.4: Agregados autoPlay, autoPlayPause y autoPlayDirection (deshabilitados por defecto).
    • 0.9.3: Agregado startAt: selecciona en qué punto quieres que comience la línea de tiempo.
    • 0.9.3: Solucionado bug con animación mientras presionas los botones de navegación.
    • 0.9.2: Solucionado bug Firefox con event.preventDefault();
    • 0.9.1: Agregado navegación por teclado, ver ejemplo vertical.
    • 0.9.1: preventDefault(); agregado a las flechas.
    • 0.9.1: Documentación mejorada.

    Demo Horizontal

    Demo Vertical

    Demo Autoplay

    Download/Bajar Plugin 0.9.5 + Demos

    Copyright 2011, CSSLab.cl – Free under the MIT license.

    Sobre el Autor: Jorge Epuñan

    Soy quien escribe en este sitio: diseñador gráfico de profesión, desarrollador web por preferencia y amante de la interacción humano-computador. Cuando no pienso en web, salgo a trotar por mis barrios en Santiago, Chile o me junto con amigos a un bar a conversar sobre nuevas tendencias y tecnologías. Twitter profesional y personal, además del Contacto.

    1. Inyaka

      ¡esta genial!

    2. Sergio Conejeros

      Buena, gran aporte! Fácil y bonito…

    3. Marco

      Excelente gracias!

    4. TVorace

      It lacks key navigation but great job !

    5. dykz

      nice

    6. Jerem

      Cool & fun timeline, I’m testing it and it works just fine! I report only one issue : I don’t know if this is an error from my part but when i click on the prev-next buttons/links, the page scrolls up to the top. I added a return false on these links with jQuery to avoid that.

    7. Jorge Epuñan

      Jerem: this issue is covered within the new release, although I use preventDefault instead of return false.

    8. creaciones web

      Realmente bonito, te felicito por tu buen trabajo y muchas gracias por compartirlo

    9. PCO

      This script do not work fine when we don’t start on first date … if “selected” on 1950 for exemple … without this, it’s fine !

    10. Jorge Epuñan

      PCO: tnx for the advice, I’ll work on it for sure!

    11. PCO

      Great correction 0.93 ! ;) StartAt very useful !!

    12. Tim

      Great script! Is it possible to link to another page from entry x (eg. 7) and when pressing the browser’s back button to start the timeline at the last clicked entry x? FF does this now already, but WebKit and IE do not. Keep up the good work!

    13. Jorge Epuñan

      Tim: yep, it is possible. Just have to integrate jQuery.bbq plugin, as I did in this tabbed article. I’ll prepare a new demo with this and publishit it right here.

    14. kanagu

      Hello , My name is kanagu, I am a WPF developer and I am planning to launch a web site in the near future to provide free WPF plugins. I came to know about this timer plugin recently, Can I have your permission to write this plugin WPF and redistribute it as a free utility for the WPF developers ?

    15. Jorge Epuñan

      kanagu: sure, this is a free plugin so go for it.

    16. 9ale7

      thanks

    17. Rob James

      Awesome plugin, well done!!! I would like to add more items to the list dynamically, is there a method to do so?

      I imagine one way would be to use jQuery to add to the lists and re-initialise the plugin, but I believe that would reset the list to the start again….?

      Appreciate your help….

    18. Jorge Epuñan

      hey Rob James: that’s an awesome upgrade, and a great challenge. Let me work on that and if it’s successful I’ll add it here as a new example.

    19. Jens Mikkelsen

      Is it possible to make it autoplay ?

    20. Jorge Epuñan

      Jens: sure it is possible, let me add it as a parameter in the next version, I’ve already have some things done for 1.0 release.

    21. Jorge Epuñan

      Jens: done 0.9.4 includes autoPlay, forward and backward.

    22. Ricky Gonzalez

      Love the plugin and it works perfectly for a page I need to create. I am having an issue with IE7. I am changing the colors and there is an artifact around the titles and images. See the example here – http://i.imgur.com/ZlhgS.jpg. Is there a solution for this?

    23. Jorge Epuñan

      Ricky: that’s because I’m using advanced CSS3 properties for the example, for bad browsers (as IE7) you must deactivate them (text-shadow, box-shadow, gradients, etc) and the images are all transparent PNG’s (unsupported by IE7-), so use regular JPG or GIF’s.

      G’luck

    24. Tanya

      Hello Jorge,
      wonderful plugin, thank you!
      But I have same issues like Ricky (latest comment) has. But in IE8. The matter not in text-shadows or pngs, once I remove a link to script in mark-up all becomes fine. What is interesting is that it does not happen with png arrows (I made my own) and it does not affect text (links) in #dates. Only h1 (which has no text-shadow or any other CSS3 effect) and pngs in #issues are affected and have same ugly outline. Do you have any solution how to fix the problem? It is somewhere in script itself…
      Would be very thankful and hope for your reply. Thanks! Tanya

    25. Ryan

      Using as an event/concert timeline for friends band. Ideal!
      Thanks!!

    26. Krittiya Clark

      Cool code. I have timeline tutorials similar yours but yours look simple.

      http://kclarkwebdesign.com/blog/tutorials/?page_id=286

    27. dlv

      excelente jorge ! felicitaciones !!

    28. santiago csirke

      That’s a real great plugin. I had been searching the web for something like this for ages! I needed to create timelines for my students, and thanks to you now it’s done! There’s an example:
      hhttp://campus.carmelitas.edu.pe/courses/CCI010/document/Term_III/test/index.html?cidReq=CCI010

    29. haribo

      Excellent plugin. Exactly what I was looking for, and found by accident.

    30. Greg

      Outstanding work, very well done!
      Didn’t work with our javascript “lightbox” (pretty photo), but it does play well with Highslide. I’m sure if I were more proficient at Javascript that I’d be able to figure it out, but sadly… I am not.

      Thanks much for making this available!

    31. Jan-Willem

      Hi, is it possible to make an event when you go with the mouse over the navigation arrows the line automatic go to scroll., and stops when the mouse is leaving the navigation arrows?

    32. Andy

      Hey Jorge! Nice plugin!!! Really cool.

      Quick question: How can I remove animation on arrow mouseover?

    33. Jorge Epuñan

      Andy: that’s CSS3 and it’s in the stylesheet:

      a {
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -o-transition: 0.5s;
      -ms-transition: 0.5s;
      transition: 0.5s;
      }

      Every link is setted to be animated on it’s :hover state, so just remove that transition sentence and no link will be moving anymore.

    34. Andy

      Jorge, thank you for your reply! You’re the man!

    35. lars

      great plugin! very nice.
      i would add a “outline:none” to the li class of the year numbers for hiding the dotted outline.
      but great work anyway!

    36. hire magento designer

      Great posting.It help to know abour script.

    37. Nasendackel

      It’s so great.

      I just have a question. i use your script in a rather strange way. My blog loads a bunch of divs, so i use your script 10x at once.

      is there a way to give the number of the last “page” manually.

      I use $(settings.datesDiv+’ li’).eq(settings.startAt-1).find(‘a’).trigger(‘click’);

      to give the startpage?

    38. Antonio

      Great script…simple yet elegant.

    39. Alex

      Si el texto es muy grande no aprece todo. Se corta.

    40. Jorge Epuñan

      Nasendackel Yes, with the startAt property you can reach any object inside the timeline, but not if it is dynamic. For that you should write smt customized, like:

      http://jsfiddle.net/taM8x/

      Gluck!

    41. Alex

      If you had a very long text or paragraph in your it is cut and not visible. How i can solve that?

    42. Jorge Epuñan

      Alex: solve it with CSS.

    43. Manuel Pino

      Está genial Jorge, impresionante !!!! Gracias por compartirlo.

    44. Daniel

      Muy útil, ademas que esta genial :)

    45. Airton Maia

      Nice Job!!

    46. Fern

      Brilliant! Thank you for sharing.

    47. Pascal GANAYE

      It is painful to fill the issue list manually.
      Why don’t you fill it automatically like this:
      $(“#issues li”).each(function (a) {
      var id = $(this).attr(‘id’);
      $(‘#dates’).append(‘‘ + id + ‘‘);
      });

    48. Jorge Epuñan

      Pascal: that’s done for 1.0 version, coming soon!

    49. pesadilla24

      Gran aporte . Saludos

    50. Stefan

      Very nice and very usefull. Thanks for sharing!

    51. Miguipda

      Hi,

      Thanks for your jquery timeline.

      I have two questions :
      1) what happens if text is bigger than the displayed picture ? Does it display a vertical / horizontal scroll ?

      2 is it possible to display more than one picture (one before and one after the text) ?

      Sincerely thanks and have a nice day,

      Miguipda ;-)

    52. Jorge Epuñan

      Miguipda: if I understood, what you need is all CSS and it’s not an issue of Timelinr. Inside #issues li you can include anything you want and style ias needed.

      Gluck!

    53. Thiago

      Ótimo! Muito obrigado, cara.

    54. Carlos

      Hola, mil disculpa me tope con este sitio web y como vi q respondian y se ayudan tengo un problema, tengo el jquery-1.3.min.js y el jquery-1.6.1.min.js y no se si ellos se pueden usar juntos en una pag. que estoy diseñando, si me pueden ayudar mil gracias si no es el foro correcto mil disculpas pero necesito ayuda

    55. Jorge Epuñan

      Carlos: si, en teoria puedes usar juntos pero no, no te lo recomiendo. Depende de las razones en q deberias usarlas juntas, generalmente no deberias usarlo. Mira como usar jQuery sin conflictos y otras opciones de librerias Javascript.

    56. ignacio

      Excelente plugin.

    57. Ramon

      Hola Jorge, me ha salido en mi web estupenda la linea de tiempo, pero quiero colocar en otro sitio un lightbox, y parece que hay algún conflicto y ya no funciona timelnr. Me puedes ayudar?

    58. Patrick

      How do I get the images to grow? I downloaded the new version and images in the example file do not grow.

    59. Cartero

      Excelente plugin. Gracias por tu compartir tu arduo trabajo!!!!!

    60. Jorge Epuñan

      Patrick: that’s CSS3 feature:

      #issues li.selected img {
      -webkit-transform: scale(1.1,1.1);
      -moz-transform: scale(1.1,1.1);
      -o-transform: scale(1.1,1.1);
      -ms-transform: scale(1.1,1.1);
      transform: scale(1.1,1.1);
      }

      Gluck!

    61. Keith

      Is it possible to have the timeline stop on the last slide?

    62. Hernan

      plugin muy copado!

    63. Carlos

      Gracias Joge por el comentario seguire mirando otras opciones para no usar esos 2 js juntos

    64. Carlos

      Jorge como estas, espero q bien aqui molestandote otra vez , en el camello me pidieron un slider de fotos peor q tenga noticias tambien en el nivo no puedo poner noticias ni link q se vallan a otras paginas , como busco un slidershoder o algo asi para pa paguina no se ni como buscar eso , peor la idea surgio por la pag de msm.com q ellos tienen noticias coon fotos y letras no se si me entiendas, gracias por la atencion prestada

    65. Jorge Epuñan

      Carlos: si te entendi, necesitas un slideshow con foto y txt q te lleva a un enlace, yo modifique nivoslider para q haga eso en un proyecto pero creo q Diapo o Awkward Showcase te pueden ayudar.

      Suerte.

    66. Malte

      Great Plugin! Very nice animations!I would put it on GitHub.com!

    67. Jorge Epuñan

      Malte: sure I’ll do it, with v1.0 release.

    68. Carlos

      Como estas Jorge las opciones que me disten la una dio esta muy complejo jajja yo recién empiezo esto y la otra pues esta mas o menos no me convence mucho peor el nido ya lo tengo adaptado en el código del nido com le hago q tu dijiste q lo has modificado yo más o menos entiendo esto, pero no puedo ni agregarle un simple link creo q se lo modifica en el html en esta parte

      Me puedes indicar más o menos como cambiarlo y en donde e si no es mucha molestia por que si no voy a tener que poner otro que esta mas o menos peor eso si es mucho trabajo empezar otra vez

    69. Carlos

    70. Carlos

      Disculpa pero no puedo poner la parte del código que quiero que veas cómo puedo hacer eso????

    71. Jorge Epuñan

      Carlos: creo q mejor para eso usa el contacto. Pega el codigo como entidad HTML porfa para q se renderice.

    72. Carlos

      Jorge ya me salio tengo el slider show como queria ahor alo voy a poner en el html eso es otro rollo despues te digo claro esta si te interesa saber como me fue jajaj amil gracias

    73. wesley

      Great plugin, just one question. After the image has finished growing, there seems to be something happening to the text, also happens if you use the arrows, it gets brighter at the end of the animation, and a little bolder as well. Can that be fixed? (I see it on your demo pages)

    74. Jorge Epuñan

      wesley: what is your browser? With Chrome animation runs great, FF something happens like you say with the text getting a little bolder but I havent IE to test it.

    75. Yordi

      Hi Jorge !
      Great job, it’s a nice tool !

      But I have a little problem :
      I try apply a background to” #dates li a” but on IE6, the background have an fixed position and the text move.
      Have you an idea for my problem?

      Thanks a lot !

      Yordi

    76. wesley

      Jorgé, I am on mac safari when I see the text become bold/styled differently after the effect has run. Not tested in other browsers, hope that helps. I thought chrome and safari shared the same codebase.

    77. Kate

      Jorge, thanks for the plugin! :) It looks beautiful, but unfortunately I am having the same problem as Jerem (20 de Agosto del 2011 a las 6:08 pm). I cannot get the timeline to scroll at all, and the next/previous buttons return to the top of the page. I’m using the 0.9.4 release. Any advice?

    78. Jorge Epuñan

      Kate: as you describe, your problem is a conflict with Timelinr and another script (and it is not working at all). Do you have any URL where I can inspect your code to help you better?

    79. Jorge Epuñan

      wesley: I’ve seen that problem in IE8, it regards to the filter attribute (MS propietary) and it is fixed on 1.0 release (soon). I’ll check it on Safari, never gave me problem that browser,

    80. Cedric Loy

      Hi, Thanks for the hard work. Its pretty impressive. But I have one small problem, everytime I use jquery.noConflict(), the timeline doesn seem to work. Do you have any idea? Thanks

    81. DasNets

      In IE8 horizontal scrolling will not work fine.

    82. Dave Mayo

      I found a bug – multiple clicks in a short period of time can shift the timeline focus away from center. It can be fixed by checking both issuesDiv AND datesDiv for the “:animated” quality in next and prev.

    83. Jorge Epuñan

      Tnx a lot Dave, it worked perfectly. Improving 1.0 release with your bugfix, tnx!

    84. Olivier

      j’ai remarqué un bug,
      http://www.cochetconceptweb.fr/timeline/

      Allez sur la droite, la selection de la dates se décale jusqu’a disparaitre totalement.

    85. Jorge Epuñan

      Olivier: Je passe en revue maintenant, je m’aperçois que je vais.

    86. Jorge Epuñan

      Olivier: Je l’ai déjà résolu, en tout cas, le correctif sera pour la version 1.0

    87. csslab lover

      Great script! Awesome tutorial.

      What is the license for this?
      Cual es la licensia para usar esto?

      Gracias!

    88. Jorge Epuñan

      It is free under the MIT license

    89. Bob

      Love the timeline. It works great, but my problem is, I’ve added about 15 dates to the timeline and when I get to the end, the “next” link allows the timeline to keep going instead of stopping, like your demo. And then when I click “prev” all the “issues” remain a 0.2 opacity until I return to the start. I’ve also noticed that the image animation is not working for me locally. Any help would be appreciated.

    90. dikomix

      Great jquery tool. it is perfect. Yesterday I try in opera, and on my site is some bad. I can not describe it well “blicking” headers. try http://www.dp2.cz/koncept. what is bad?

    91. Chris

      Awesome script! Thanks for sharing it with us :)

      By the way, a guy on Codecanyon.net has been making money with your work since a while…

      I think you should check this out: http://codecanyon.net/item/jquery-timeliner-slider/964667

      Cheers.

    92. Antenna

      This is great! Just what I was looking for.

      I have one small issue – my timeline is sitting down the bottom of a page and when the page loads the browser automatically scrolls down to the timeline. Is there a way to stop this happening?Many thanks!

    93. Jorge Epuñan

      Bob do you have any way to upload your code to a server to have a look at it?

    94. Jorge Epuñan

      Chris: Yeah I’m in knowledge of it and already have contacted Envato to remove it ASAP. Although still no answer…

    95. Jorge Epuñan

      Antenna: same as Bob, please give some URL to have a look at the code.

    96. Antenna

      Sorry Jorge, the issue I was experiencing was due to another script – all sorted now! Any clues as to when version 1.0 will be ready? Thanks!

    97. jo

      Hi,
      I am experiencing a conflict with Pretty Photo. The timeline works until I view a photo, close the pic and then when I return to the timeline it won’t scroll? Could you help me out please? Many thanks in advance.

    98. Bob

      Jorge, I found out that the error came when I tried to do bulleted lists within each issue. The jQuery did not like that. I’m having to manually use HTML bullets for the copy I’m trying to insert. Is there a way to fix that?

    99. Jorge Epuñan

      Antenna: great! Still no schedule to the final release, sorry.

      jo: as I know, Prettyphoto has it’s own methods for navigation, probably they’re confliction with the ones used in Timelinr. Try using jQuery.noConflict();

      Bob: thst’s because the Timelinr itself uses lists for it’s construction; I suggest you use HTML Entities, for example for the bullets use &bull;.
      Let me know how it’s working for you, tnx for writing me.

    100. Steph

      Love your plugin! Thank you for offering it for free!

    101. Lars

      very nice!
      but breaks in IE8 and IE7, some CSS improvements are necessary!

    102. Jorge Epuñan

      Lars: sincerally, I don’t care about IE6-IE7, with this plugin I’m looking forward, not backwards.
      If you need some fallback, I suggest you use conditional comments or Modernizr.

    103. Claudio

      Well, great plugin! Thank you.

    104. Facundo

      Muy bueno!!!

    105. dikomix

      It is possible repeat timeline and “selected” on the bottom content? When I add second shortcut is create the timeline, and he moving but selected class is only in “using” timeliner (top or bottom).
      http://www.dp2.cz/koncept

    106. Jorge Epuñan

      dikomix: great use! I never thought to have the dates duplicated, of course I’ll work on smt for it. Gimme some time and I’ll publish here a solution for you.

      regards.

    107. Eduardo

      No trabaja en IE8, alguien sabe alguna forma de hacerlo funcionar en IE8?

      Not working on IE8, can anyone help make it work on IE8?

    108. Jorge Epuñan

      Eduardo: what’s not working for you? Do you have any URL?

    109. Eduardo

      No need for my URL, same happens with your demo: http://www.csslab.cl/ejemplos/timelinr/latest/vertical.html

      I tried your demo to make sure it was not something i was doing wrong. Please let me know if you have a solution.

      Works in all other IE except IE8, when scrolling timeline goes crazy, with compatibility mode on it does work, but if its off the scrolling messes up.

    110. Jorge Epuñan

      Eduardo: Bug detected, and I can offer you 2 options:

      1. Force compatibility mode with <meta http-equiv=”X-UA-Compatible” content=”IE=7″>
      2. Give me some time to fix it, I will do it because I should always offer the best rendering mode, specially for IE.

      Damn IE8, It shoudn’t do that! ¡Gracias!

    111. Jorge Epuñan

      Eduardo after hours, your bug is dead. Please check again with your IE8 on this new 0.9.5 version, I fixed too the lack of PNG support for the same browser.

      Regards.

    112. assadotcom

      jQuery Timeline,
      This simple plugin helps you to give more life to the boring timelines. Supports horizontal and vertical layouts, and you can specify parameters for most attributes: speed, transparency, etc..
      http://assadotcom.blogspot.com/2012/01/jquery-timeline.html

    113. Joseph Buarao

      nice plugin..

    114. ale

      Hello. I can’t initialize multiple timelinr on the one page. can you help me how to do it? I used your code and my init code is :
      “$(function(){
      $().timelinr_({
      containerDiv: ‘#timeline_’
      });
      });”

    115. Jorge Epuñan

      ale: that’s not possible on cureent version, could be a feature soon but I can’t garantee that.

    116. ale

      ok. Thank you for a fast answer. Would be a very functional if we can to initialize multiple timeliners on the one page, something code like “$(function(){
      $().timelinr({containerDiv: ‘#timeline_1′});
      $().timelinr({containerDiv: ‘#timeline_2′});
      });. Thanks alot for your plugin, it’s really nice one.

    117. Joseph Buarao

      great work! mate..

    118. Adi

      Could we use it for free ? If yes, mention in footer of CssLabs+ URL towards your site is enough?
      Thanks for your work ;-)

    119. Jorge Epuñan

      Yes Adi, it is MIT licensed.

    120. Roberto

      hi, is there a way I can add scroll bar to the text on each section? i’ve been trying to use different UI but no luck, including this one
      http://manos.malihu.gr/jquery-custom-content-scroller
      No luck..porfa me puedes ayudar? thanks. PD. great timeline! :)

    121. Jorge Epuñan

      Roberto you shouldn’t have any problem integrating another plugin, but there’s something important that you should know:

      Most of scrollbars plugins I’ve used need the element scrolled be visible (not hidden like are the #issues li within the timeline). Probably you should use a method for that, from the scrollbar plugin.

      GLuck! Send an URL to help you better.

    122. Ryan

      My company decided your plugin was the best option for an interactive history timeline on the website. However, when I try to apply the plugin to our template, none of the dates or issues show up. Using Firebug, I see that the JS is setting the style width to 0 for both the issues and date UL items. We copied the CSS from the example as a starting point and changed the width for both UL, and DIV, so there is a starting width, yet somehow the style is set to “width: 0px; margin-left: 0px;”. I noticed in the JS that there is some calculation and created an alert for the settings at the top of the JS, widthIssues tells me it has a value of 0, but I don’t know where it’s getting the 0 from.

      Any thoughts on what we are doing wrong? I can provide a test URL via email. Thanks for the plugin and any advice you can offer.

    123. Mimi

      Awesome job! Is there a way to use a direct link to get to a specific era. For example, is there a way to get to a link via “www.website.html#1900″ . I tried it with your demo, but the website is grayed out.

    124. Razor

      thanks :) ……timeline profile!

    125. cafe mambo ibiza

      Great work, we are going to use it on our new site. Quick question though; I can’t seem to re-arrange the dates line to show below the “issues”. Is there any reason why this should not work?
      P.S. As you’ll see on our dev page (http://mambo.3thirteen.co.uk/en) we have customised the look of your great plugin. Hope you like it. Thanks,

    126. Jorge Epuñan

      hey cafe mambo ibiza: as I’ve seen in your site your problem was resolved right?

      Great design BTW, congrats.

    127. ArleyM

      I replaced the content with list points. This made it so when you clicked the next button on the last point that it kept scrolling! To fix this I had to give a class to all of the issues and declare it in the JS file like:

      var howManyIssues = $(settings.issuesDiv+’ li.year’).length;

    128. Arnoldo Briceño

      Excelente timeline. Gracias por compartir tu excelente creación.

    129. Antonio A.

      En internet explorer 7/8 el texto se ve mal. Dando la posibilidad de desactivar las funciones “fadeTo” funcionaria correctamente y se vería bien.

    130. Andrew

      There was a bit of a name-spacing issue (when using jQuery not as $), so I have a little update that I could commit to make it play nice. Do you plan on putting this on github?

    131. Nasendackel

      I am using it for the comments on my blog. In my template I am loading 11 comment-loops at once, which all uses timelnr. so I am using ist 11x. on loop has maybe 10 items and only 1. Is there a way to say timenlr by hand how many items there are?

    132. Jorge Epuñan

      Andrew: I’m working on 1.0 version, which will be stable and hosted on GitHub (no date for release yet).

      Nasendackel: Great use of Timelinr, tnx! It is misbehaviour with some element calculous, I recommend you to re-init the plugin everytime you request a new comment.

    133. Enrique

      Wow.
      Esta genial.
      crees que pueda aplicarlo a una pagina jimdo?

    1. [...] jQuery Timelinr - créez un slider de frise chronologique ...
      jQuery Timelinr - créez un slider de frise chronologique | WebDevelopment | Scoop.it
    2. [...] jQuery Timelinr это  jQuery plugin, который поможет вам сделать анимированную таймлайн на вашем сайте.  С помощью этого плагина вы ...
      Персональный сайт Рената Алимбекова | Ренат Алимбеков, Веб-разработка, программирование, стартапы
    3. [...] 19 jQuery Timelinr is a jQuery plugin helps you to ...
      How to Make Timelines with jQuery Timelinr | PHP Ocean
    4. [...] jQuery Timelinr is a jQuery plugin helps you creating animated sliding timelines. It offers great flexibility by supporting horizontal ...
      jQuery Timelinr - Jquery Plugin to Make Timelines
    5. [...] jQuery Timelinr is a jQuery plugin helps you creating animated sliding timelines. It offers great flexibility by supporting horizontal ...
      jQuery Timelinr - Jquery Plugin to Make Timelines
    6. [...] jQuery Timelinr is simple plugin helps you to give more life to the boring timelines. Supports horizontal and vertical layouts, ...
      jQuery animated sliding timelines | webtrendset
    7. [...] Timelinr jQuery Timelinr est un plugin jQuery qui permet de créer un effet de ligne temporelle verticale ou ...
      jQuery Timelinr
    8. [...] En algun momento me imagine un diseño con un scroll  horizontal, bueno pues ahora visitando CSSLabs ...
      jQuery Timelinr | URIELMANIA
    9. [...] TimelinrSimple jQuery Timelines Plugin : jQuery TimelinrBy yadirosadi on August 22, 2011   jQuery Timelinr is a ...
      Simple jQuery Timelines Plugin : jQuery Timelinr | BlogUpstairs
    10. [...] js4design a remonté un plugin vachement beau et qui peut se révéler pratique pour des designers. jQuery Timelinr vous ...
      Episode 39 des chroniques jQuery | MathieuRobin.com
    11. [...] jQuery Timelinr カテゴリー: jQuery   パーマリンク ← 画像の一部分をマウスで簡単に抽出するUIを実装できるjQuery [...]
      かっこいい沿革を作りたい方にお勧めのjQueryで動く年表 | ブログ
    12. [...] with the CodecademyBootstrap – Toolkit designed to kickstart development of webapps and sitesjQuery Timelinrspin.jsGolden Grid SystemMimiGlyphs – 40 icons ...
      Weekly Design News – Resources, Tutorials and Freebies (N.100)
    13. [...] jQuery Timelinr [...]
      Weekly Design News – Resources, Tutorials and Freebies (N.100) | FlexLib
    14. [...] jQuery Timelinr is a great plugin by Jorge Epuñan to make awesome timelines. It supports both horizontal and vertical ...
      jQuery Timelinr - jQuery plugin to make awesome timelines. | W3CAFE
    15. [...] Demo – Horizontal Demo – Vertical Download About [...]
      jQuery Timelinr – Free Jquery Plugin to Make Timelines | Aboyousif
    16. [...] jQuery Timelinr [...]
      Web Development articles, tutorials, help » Blog Archive » Weekly Design News – Resources, Tutorials and Freebies (N.100)
    17. [...] Image Slider – CSS Lab By designparc On August 23, 2011 · Leave a Comment ...
      jQuery Timeline Image Slider - CSS Lab
    18. [...] jQuery Timelinr [...]
      Weekly Design News – Resources, Tutorials and Freebies (N.100) | Typography Blog
    19. [...] jQuery Timelinr [...]
      Weekly Design News – Resources, Tutorials and Freebies (N.100) | WebDino.net
    20. [...] jQuery Timelinr [...]
      Useful Online Resources, Tutorials and Design News for Web Designers – #3 | TutsList
    21. [...] / Download: http://www.csslab.cl/2011/08/18/jquery-timelinr/#english If you enjoyed this article, please consider sharing it! ...
      Linea del Tiempo (jquery) | Blogvex
    22. [...] 2. jQuery Timelinr [...]
      12 jQuery Plugins You May Not Know About « The Creative Project
    23. [...] jQuery Timelinr is a simple plugin that helps you give more life to boring timelines. It supports horizontal and ...
      jQuery Timelinr – Give life to boring timelines - CodeVisually
    24. [...] jQuery Timelinr ↩ CSSLab, via http://www.csslab.cl/2011/08/18/jquery-timelinr/ [...]
      jQuery Timelinr ↩ CSSLab | D3sordr3
    25. [...] [...]
      40 New jQuery Plugins
    26. [...] Timelinr [...]
      40 New jQuery Plugins | Typography Blog
    27. [...] Timelinr [...]
      Web Development articles, tutorials, help » Blog Archive » 40 New jQuery Plugins
    28. [...] Timelinr [...]
      40 New jQuery Plugins | WebDino.net
    29. [...] style="red"]Demo[/button_link]jQuery.fracs Kaynak DemoUncategorized Pluginsgrumble.js Kaynak DemoTimelinr Kaynak Demo Elycharts Kaynak Demo Flexible Nav Kaynak Demodeck.js Kaynak ...
      40 jQuery Eklentisi
    30. [...] Timelinr faz isso de maneira simples funcional, testei e gostei [...]
      Linha do tempo com jQuery - Timelinr | esaid
    31. [...] Timelinr [...]
      Roundup of 25 Ovan Fresh jQuery plug-ins | Web Design Burn
    32. [...] 14. jQuery Timelinr [...]
      35 Really Useful jQuery Plugins for Web Designers and Developers | Web Design Habits
    33. [...] Timelinr plugin page: http://www.csslab.cl/2011/08/18/jquery-timelinr/ [...]
      GBin1 recommend: use Time axis plugin Timelinr create cool jQuery Time axis (Time line)
    34. [...] Evident, aş putea şi din aceste selecţii cita multe pluginuri jQuery. M-aş opri la Timelinr care e şi interesant ...
      Câteva colecţii de pluginuri jQuery | CNet.ro
    35. [...] Evident, aş putea şi din aceste selecţii cita multe pluginuri jQuery. M-aş opri la Timelinr care e şi interesant ...
      Câteva colecţii de pluginuri jQuery | CNet.ro
    36. [...] jQuery Timelinr is a simple plugin for creating more beautiful and functional timelines. It supports both vertical and horizontal ...
      What’s new for web designers – Oct 2011 | Web Design
    37. [...] jQuery Timelinr is a simple plugin for creating more beautiful and functional timelines. It supports both vertical and horizontal ...
      What’s new for web designers – Oct 2011 | linuxin.ro
    38. [...] jQuery Timelinr is a simple plugin for creating more beautiful and functional timelines. It supports both vertical and horizontal ...
      UK Web Design Now! » Post Topic » What’s new for web designers – Oct 2011
    39. [...] jQuery Timelinr is a simple plugin for creating more beautiful and functional timelines. It supports both vertical and horizontal ...
      ThemeDigg » What’s new for web designers – Oct 2011 » ThemeDigg
    40. [...] jQuery Timelinr is a simple plugin for creating more beautiful and functional timelines. It supports both vertical and horizontal ...
      What’s new for web designers – Oct 2011 | Word Press Theme Magazine
    41. [...] jQuery Timelinr ? CSSLab [...]
      All 10/15/2011 | Just Nenad
    42. [...] jQuery Timelinr ↩ CSSLab [...]
      jQuery Timelinr ↩ CSSLab » Web Design
    43. [...] [...]
      What’s new for web designers – Oct 2011 | Webdesigner Depot
    44. [...] etwas an den Kommentaren geschraubt. Nun werkelt hier der jQuery Timelinr. Dank an Matthias für den [...]
      Nasendackel - monkeys can write - Kommentare als Zeileiste (oder so)
    45. [...] Pobierz (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) [...]
      jQuery Timelinr – Atrakcyjny skrypt do prezentowania danych w postaci osi czasu | lubik.info webmaster blog
    46. [...] jQuery Timelinr is a simple plugin helps you to give more life to the boring timelines. It supports horizontal ...
      Create Timelines with jQuery Timelinr Easily | Design That Sticks
    47. [...] jQuery Timelinr is a simple plugin helps you to give more life to the boring timelines. It supports horizontal ...
      Create Timelines with jQuery Timelinr Easily ‹ Matt Briney – Web Strategist, Data Junkie, Web Application Developer, Traveler and Technology Enthusiast
    48. [...] jQuery Timelinr ↩ CSSLab. __spr_config = { pid: '4e982ea9396cef47e200033e', title: 'Timeline javascript avec jQuery Timelinr - CSSLab', ...
      Timeline javascript avec jQuery Timelinr – CSSLab - Quid de l'internet : blog seo, php, css, dev, psd | Quid de l'internet : blog seo, php, css, dev, psd
    49. [...] jQuery Timelinr is a simple plugin helps you to give more life to the boring timelines. It supports horizontal ...
      Create Timelines with jQuery Timelinr Easily » Shai Perednik.com
    50. [...] eventos de forma cronológica y no deseas caer en las aburridas presentaciones lineales, entonces Timelinr es lo que estas ...
      Línea de tiempo animada con jQuery | Kabytes
    51. [...] eventos de forma cronológica y no deseas caer en las aburridas presentaciones lineales, entonces Timelinr es lo que estas ...
      Linea de tiempo JQuery | MyPortofolio
    52. [...] TimeLinr es un plugin jQuery para crear líneas de tiempo en forma de Slider que podemos configurar para que ...
      Timelinr - Animación de una linea de tiempo en jQuery | colorate
    53. [...] 20 jQuery Timelinr is a simple plugin helps you to ...
      Create Timelines with jQuery Timelinr Easily | PHP Ocean
    54. [...] Para conocer más sobre Timelinr haz click  AQUI [...]
      Añade a tu sitio una línea de tiempo dinámica con JQuery | Blog de EducacionIT - Cursos y Formacion Profesional IT
    55. [...] Web: Timelinr __spr_config = { pid: '4e4a8292c2b2195cf9000137', title: 'Línea de tiempo animada con jQuery', ckw: 'JavaScript,Jquery,Programacion,Web ...
      Línea de tiempo animada con jQuery | Xtreme News
    56. [...] jQuery Timelinr est un plugin simple vous aide à donner plus de vie à votre calendrier ennuyeux. Il supporte les ...
      Créer facilement des calendriers avec des Timelinr jQuery
    57. [...] Animated Timeline Plugin VN:F [1.9.10_1130]please wait...Rating: 0.0/10 (0 votes cast)VN:F [1.9.10_1130]Rating: 0 (from 0 votes) [...]
      Webmasterkit.info » Elegant Free Timeline Plugin
    58. [...] [...]
      What’s new for web designers – Oct 2011 | Adam Birkner
    59. [...] 5. Timelinr [...]
      Hayatınızı Kolaylaştıracak 10 JQuery Eklentisi | webloti
    60. [...] jQuery Timelinr is a simple plugin helps you to give more life to the boring timelines. It supports horizontal ...
      Create Timelines with jQuery Timelinr Easily | TutsList
    61. [...] إضافة jQuery لعمل خط زمني Timeline [...]
      مختارات من تويتر #27: نصائح لتصميم شعار مناسب
    62. [...] إضافة jQuery لعمل خط زمني Timeline [...]
      مختارات من تويتر #27: نصائح لتصميم شعار مناسب | مدونة أبو راشد
    63. [...] jQuery Timelinr [...]
      New Web Design Tools And Resources You Would Need - Amp Design Labs
    64. [...] JQuery timelinr Previous article  [...]
      Mybookmarks on the web » JQuery Timelinr
    65. [...] la demo o scarica il template cliccando a questo indirizzo: csslab.cl  Rate this: Like this:LikeBe the first to ...
      jQuery Timelinr. (Plugin per jQuery) « Muraleswebstudio's Blog
    66. [...] = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})(); 0jQuery Timelinr is a simple plugin helps you to give more life to the ...
      Create Timelines with jQuery Timelinr | nyentrik - Bleeding Edge Best Resources for Web Developers
    67. [...] jQuery Timelinr is a simple plugin helps you to give more life to the boring timelines. It supports horizontal ...
      Create Timelines with jQuery Timelinr | uxstats.com
    68. [...] jQuery Timeliner (demo) [...]
      28 jQuery und CSS3 Slider » FRISCH INSPIRIERT
    69. [...] jQuery Timelinr [...]
      網站製作學習誌 » [Web] 連結分享
    70. [...] Infos zu findet ihr hier. [...]
      Zeitleisten mit jQuery: Timelinr - Webmaster Blog L1D.de
    71. [...] Impressive animated jquery timeline: http://www.csslab.cl/2011/08/18/jquery-timelinr/ [...]
      jQuery Timeline - Learn To Do Stuff Good
    72. [...] JQuery Timelinr [...]
      Tools for creating timelines | Journalism Tech
    73. [...] Article Directory Script pour créer un site de communiqué de presse avec partage de revenu.JqueryjQuery Timelinr Un histogramme de ...
      Les meilleurs liens du web - octobre 2011
    74. [...] Horizontal demo – Vertical demo – Documentation and download [...]
      jQuery Timelinr
    75. [...] jQuery Timelinr [...]
      jQuery Timelinr | Keefr.com
    76. [...] jQuery Timelinr – Créer un effet de ligne temporelle verticale ou horizontale avec d’un côté, des dates et de l’autre, ...
      390 ressources Javascript & jQuery
    77. [...] med jQuery. Förmodligen riktigt användbart (om man hittar rätt projekt att använda det till).http://www.csslab.cl/2011/08/18/jquery-timelinr/ Pushup!En liten slider att lägga ...
      Webbens top 10 (omgång 4) | David Paulsson
    78. [...] Timelinr ( Demo | Download ) Timelinr is a trouble-free jQuery plugin that assists you in providing more ...
      40+ Useful and Fresh jQuery Plugins
    79. [...] Timelinr ( Demo | Download ) Timelinr is a trouble-free jQuery plugin that assists you in providing more ...
      Sacima鲨鳍马工作室 » Blog Archive » 40+ Useful and Fresh jQuery Plugins
    80. [...] Timelinr ( Demo | Download ) Timelinr is a trouble-free jQuery plugin that assists you in providing more life to tedious timelines. It supports ...
      40+ Kullanışlı ve Taze Jquery Uygulamaları | internet, tasarım, teknoloji ve kültür
    81. [...] Timelinr ( Demo | Download ) Timelinr is a trouble-free jQuery plugin that assists you in providing more ...
      More than 40 new and very useful jQuery plug - Open News
    82. [...] jQuery Timelinr [...]
      jQuery Timelinr | jQuery-Javascript | Scoop.it
    83. [...] jQuery Timelinr [...]
      New Web Design Tools And Resources You Would Need | Top Web Hosts Review Best Web Hosting
    84. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks
    85. [...] Timelinr ( Demo | Download ) Timelinr is a trouble-free jQuery plugin that assists you in providing more life to tedious timelines. It supports ...
      40+ Useful and Fresh jQuery Plugins | HeroicTuts.com
    86. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks | EtutsLive.com
    87. [...] jQuery Timelinr This simple plugin helps you to give more life to the boring timelines. Supports horizontal and ...
      11 Fresh and Cool jQuery plugins | Dreamincolor
    88. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks « maxxdesigns.com | Westchester ny Web Designs | Graphic Designs
    89. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks | Graphic Design
    90. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks | WebFree.ro
    91. [...] Timelinr— слайдер, который придаст больше красочности и [...]
      10 свежих полезных JQuery плагинов | webkladez - Полезные уроки для photoshop, wordpress, joomla
    92. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks | Free WordPress Installs
    93. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks | Free Web Design Tucson
    94. [...] 13. jQuery Timelnr [...]
      Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks | Cairns Web Design
    95. [...] Timelinr ( demo | download )  Timelinr é um trouble-free plugin jQuery que auxilia no fornecimento de mais vida aos prazos tedioso. Ele suporta layouts ...
      40 Plugins úteis com jQuery | guilhermekami
    96. [...] Timelinr [...]
      45 Fresh jQuery Plugins and Tutorials | Web Design Burn
    97. [...] [...]
      The 50 Most Useful jQuery Plugins from 2011
    98. [...] jQuery Timelinr [...]
      The 50 Most Useful jQuery Plugins from 2011 | WebDino.net
    99. [...] jQuery Timelinr jQuery Timelinr ↩ CSSLab [...]
      JQUERY by flope - Pearltrees
    100. [...] jQuery Timelinr [...]
      The 50 Most Useful jQuery Plugins from 2011 | Typography Blog
    101. [...] jQuery Timelinr [...]
      iGuoguo 爱果果酷站 » 2011年50个最实用的jQuery插件
    102. [...] jQuery Timelinr ↩ CSSLab jQuery Timelinr [...]
      jQuery by xtophe - Pearltrees
    103. [...] jQuery Timelinr [...]
      25 New web design resources you may need
    104. [...] jQuery Timelinr [...]
      Los 50 plugins jQuery más útiles de 2011 | loureyro.com.ar
    105. [...] jQuery Timelinr [...]
      32 Useful jQuery Plugins From 2011 | AcrisDesign
    106. [...] jQuery Timelinr is a simple plugin helps you to give more life to the boring timelines. It supports horizontal ...
      Create Timelines with jQuery Timelinr Easily | WebDesignBasis.com
    107. [...] Timelinr ( 演示 | 下载 ) [...]
      Web Design 40款非常有用的 jQuery 插件推荐(系列一)
    108. [...] Carousel PluginTimeglider JSdiagonalFadebxsliderletteringjsShuffle Letters Effect: a jQuery PluginjQuery TimelinrquovolverExpanding Fullscreen Grid PortfolioOverscrollHTML5 Music PlayerjQuery PointPoint – A [...]
      2011年度奉献:32个极其有用的jQ插件! | uleadesign 领潮社
    109. [...] JQuery Timelinr [...]
      Подборка полезных JQuery плагинов за 2011 год | TechnoVzor
    110. [...] Source Demo [...]
      10 Breathtaking jQuery Plugins | jQuery4u
    111. [...] 5. Timelinr [...]
      2011 Yılının En İyi JQuery Eklentileri | webloti
    112. [...] jQuery Timelinr [...]
      Excellent and Useful jQuery Plugins « DopinPanda-Blog
    113. [...] Timelinr [...]
      Free jquery image sliders for any occasion
    114. [...] 源码 / 演示 [...]
      iGuoguo 爱果果酷站 » 分享10款绝对让你心动的jQuery插件
    115. [...] Timelinr ( 演示 | 下载 ) [...]
      40款非常有用的 jQuery 插件推荐(系列一) – 峰随意动,尽从容!
    116. [...] 3. Timelinr [...]
      分享10款绝对让你心动的jQuery插件 | 艾艾时代
    117. [...] jquery-timelinr Non penso servano molte parole , basta leggere la pagina appena lincata, magari facendo prima un salto in ...
      Gnomo.org 2004 – 2011 » jquery-timelinr. Timeline made in jQuery.
    118. [...] jQuery Timelinr 網頁上的 demo 效果不錯,不過這看起來比較適合拿來接案XD [...]
      【Inside】時間軸網站大集合與網頁製作元件 | 桃竹苗未上市股票資訊03-5836288
    119. [...] 5. Timelinr [...]
      2011 Yılının En İyi JQuery Eklentileri | DersBilgisayar.com
    120. [...] 3. Timelinr [...]
      十大触目惊心的jQuery插件:强化Web开发 | 骆恒安's Blog
    121. [...] Timelinr – Thanks to its customizable layouts, speed, and transparency, you can say goodbye to boring old timelines. Check ...
      7 jQuery Plugins For A More Eye-Catching Website | blogfreakz.com
    122. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image And Content Sliders Plugins
    123. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | Wrhel Consulting and Design
    124. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | EtutsLive.com
    125. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins « CSS Tips
    126. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | Graphic Design
    127. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | TrolWebDesign
    128. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | designerbooster
    129. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | Free Web Design Tucson
    130. [...] Timelinr – Graças à sua layouts customizáveis??, velocidade e transparência, você pode dizer adeus a chata cronogramas das antigas ...
      Top of your Mind » » 7 jQuery Plugins Para Encrementar o seu Site
    131. [...] jQuery Timelinr [...]
      Excellent and Useful jQuery Plugins | Ahmad Assaf`s Blog
    132. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins | WebScriptPlus.com
    133. [...] 10. Timelinr [...]
      22 Most Popular jQuery Plugins of 2011 | Enbeeone3
    134. [...] 7. Timelinr [...]
      Midriff Affiliates
    135. [...] Timelinr – Thanks to its customizable layouts, speed, and transparency, you can say goodbye to boring old timelines. Check out ...
      7 JQUERY PLUGINS TO JAZZ UP YOUR WEBSITE | Online Technotainment
    136. [...] Timelinr [...]
      Brand New and Extremely Awesome jQuery Plugins | Webdesign artikelen
    137. [...] Timelinr [...]
      45 Fresh jQuery Plugins and Tutorials | Resoures | UNNO PROFESSIONAL MAGAZINE*
    138. [...] LifestreamEasily create a stream of your online activity.Learn More | Demo jQuery TimelinrThis is the perfect tool for creating online timelines.  It ...
      Most Useful jQuery Plugins from 2011 – Boilerplate’s & More! | ChurchMag
    139. [...] jQuery Timelinr ↩ CSSLab 0.9.4: Added autoPlay, autoPlayPause and autoPlayDirection (disabled by default). 0.9.3: Added startAt: select where do ...
      Chris Weed (cweed) | Pearltrees
    140. [...] jQuery Timelinr ↩ CSSLab [...]
      Information Visualization by sri.gopalan - Pearltrees
    141. [...] jQuery Timeline [...]
      Stuff I’m reading (weekly) | Jon Stahl's Journal
    142. [...] jQuery Timelinr [...]
      28 Most Useful jQuery Plugins from 2011 | 1step web design: Best for developer and designer
    143. [...] 13. jQuery Timelnr [...]
      分享30个绝对让你动心的jQuery插件和CSS3小技巧 | Partaji.com
    144. [...] إضافة jQuery لعمل خط زمني Timeline [...]
      مختارات من تويتر #27: نصائح لتصميم شعار مناسب | مدونة فديتك
    145. [...] agree with conor on the CSS. However, in the interest of options, jQuery is another option. ...
      What technique to use?
    146. [...] 7. Timelinr [...]
      40+ Fresh jQuery Image and Content Sliders Plugins « cre8tives
    147. [...] jQuery Timelinr [...]
      The best 120+ Jquery plugins from around the internet
    148. [...] timeline presentation made with jQuery. This entry was posted in javascript, jquery, tutorial and tagged [...]
      jQuery timeline presentation | php-architekt.cz
    149. [...] jQuery Timelinr ↩ CSSLab This simple plugin helps you to give more life to the boring timelines. Supports ...
      Timelines | Pearltrees
    150. [...] Timelinr [...]
      » Panning for jQuery Gold!DrPunchBlog
    151. [...] jQuery Timelinr [...]
      New Web Design Tools And Resources You Would Need « DopinPanda-Blog
    152. [...] the evolution of the word Naptown, a nickname for Indianapolis. To accompany this story, I used JQuery Timelinr to ...
      An interactive timeline on the evolution of the word “Naptown” | GraphicStew | The Indianapolis Star | IndyStar.com
    153. [...] jQuery Timelinr is a simple plugin for creating more beautiful and functional timelines. It supports both vertical and horizontal ...
      What’s new for web designers – Oct 2011 « DopinPanda-Blog
    154. [...] 8. jQuery Timelnr 9 Jquery โคตรเจ๋งที่แนะนำให้ลองกัน [...]
      9 Jquery โคตรเจ๋งที่แนะนำให้ลองกัน | sutham : html css web design jquery knowleadge website lifestyle เล่าเรื่อง แชร์ประสบการณ์ ทำงาน
    155. [...] Timelinr ( 演示 | 下载 ) [...]
      40款非常有用的 jQuery 插件推荐(一) | CSSwang-CSS网站