Giter Site home page Giter Site logo

ticker's People

Contributors

alexfish avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ticker's Issues

Set list and list items height

Hi,

I think a little improvement should be adding an height option. So you could assign the same heigth for UL and LI items. In some circumstances could be useful. And the default value "auto" works as before.

var defaults = {
speed:4000,
effect:'fade',
height:'auto',
run_once:false,
random:false
};

...
obj.height(options.height);
list.height(options.height);

List Ticker Speed

Just testing your list ticker and I can't seem to slow the ticker speed down.

Here's the code I am using.

/* List Ticker by Alex Fish
// www.alexefish.com
//
// options:
//
// effect: fade/slide
// speed: milliseconds
*/

(function($){
$.fn.list_ticker = function(options){

var defaults = {
  speed:8000,
  effect:'fade'
};

var options = $.extend(defaults, options);

return this.each(function(){

  var obj = $(this);
  var list = obj.children();
  list.not(':first').hide();

  setInterval(function(){

    list = obj.children();
    list.not(':first').hide();

    var first_li = list.eq(0)
    var second_li = list.eq(1)

    if(options.effect == 'slide'){
        first_li.slideUp();
        second_li.slideDown(function(){
            first_li.remove().appendTo(obj);
        });
    } else if(options.effect == 'fade'){
        first_li.fadeOut(function(){
            second_li.fadeIn();
            first_li.remove().appendTo(obj);
        });
    }
  }, options.speed)
});

};
})(jQuery);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.