Git Product home page Git Product logo

Comments (2)

wobi03 avatar wobi03 commented on August 18, 2024

Well, you can do some enhancement..

..paste in roundslider_customTicks.js and add to solution (or eaven paste it to your main javascript):

$.fn["roundSlider"].prototype.defaults['customTicks'] = [];

$.fn["roundSlider"].prototype._tooltipValue = function(value, index) {
    var val = this._raise("tooltipFormat", { value: value, "handle": this._handleArgs(index) });
    var ct = this.options.customTicks; 
    if(typeof(ct) !== 'undefined' && ct.length > 0){
      val = this._raise("tooltipFormat", { value: ct[value], "handle": this._handleArgs(index) });
    }
    return (val != null && typeof val !== "boolean") ? val : value;
}

and while you create/instantiate slider in your main javascript:

$(".my_custom_ticks_slider").roundSlider({
      sliderType: "min-range",
      value: 1,
      step: 1,
      min: 0,
      max: 8,
      customTicks: [1,2,3,5,8,13,21,34,55]
});

From min:0 to max:8 (with step:1) there are 9 distinct values;
The enhancement takes selected value on the slider (class="my_custom_tics_slider") as index, reads customTicks[index] and writes it into the tooltip.
Rest of the code of roundSlider v1.3 stays untouched.

from roundslider.

soundar24 avatar soundar24 commented on August 18, 2024

Great work @wobi03 👍

I did a similar thing to move in non-linear incremental:
http://jsfiddle.net/soundar24/LpuLe9tr/620/

I will consider a clean way in the source soon.. :)

from roundslider.

Related Issues (20)

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.