Giter Club home page Giter Club logo

Comments (6)

pixlo avatar pixlo commented on July 26, 2024 3

Needed those too, did some research, so maybe it'll be of some help to someone

You could kinda add some of those (tho styles are unavailable by default as far as I'm concerned), component is using nouislider under the hood so it's options are available.
Try passing options object like so:
<Slider :min="0" :max="1000" :options="{pips: {values: [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100], mode: 'positions'}}" />
docs

from slider.

sherwinwater avatar sherwinwater commented on July 26, 2024
                <Slider
                    v-model="value"
                    :min="0"
                    :max="100"
                    :options="{
                        pips: {
                            values: [
                                0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100,
                            ],
                            mode: 'positions',
                        },
                    }"
                />
<style>
.slider-pips {
    display: flex;
    justify-content: space-evenly;
}
</style>

<style src="@vueform/slider/themes/default.css"></style>

image

from slider.

HerrSammyDE avatar HerrSammyDE commented on July 26, 2024

is there also a possibility, with which one can block individual steps and only for example 10, 20, 30 ... and not the ones in between like for example 11, 12, 13, ... 21, 22 ... ?

from slider.

HerrSammyDE avatar HerrSammyDE commented on July 26, 2024

for example
fk7hawh0no

from slider.

dtice avatar dtice commented on July 26, 2024
                <Slider
                    v-model="value"
                    :min="0"
                    :max="100"
                    :options="{
                        pips: {
                            values: [
                                0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100,
                            ],
                            mode: 'positions',
                        },
                    }"
                />
<style>
.slider-pips {
    display: flex;
    justify-content: space-evenly;
}
</style>

<style src="@vueform/slider/themes/default.css"></style>

image

I found that the following changes made the values line up a bit nicer:

<style>
.slider-pips {
    display: flex;
    justify-content: space-between;
}

.slider-value-large {
    margin-right: -1rem;
}
</style>

from slider.

adamberecz avatar adamberecz commented on July 26, 2024

Once in a while this will be implemented natively. Using it via options with custom CSS is the workaround for now. Duplicate #49.

from slider.

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.