In my case, i have a combination of multiple sliders synced together and the ui looks very similar to a table with main subject on first column of the table and contents are on the rest of the columns.
the first column is a vertical slider and the rest of columns are horizontal sliders wrapped within a vertical slider which is synced with the first one, so basically i have 2 vertical sliders synced together.
my concern is when i want to firstSlider.go(index) how can i disable speed option without updating the option like firstSlider.options = {speed: 0}?
for example, my current index is at 0 and i want to jump down to index 10, the animation makes my eyes itchy.
it would be great if i can pass an option in go() function with additional animation speed without changing default options being defined earlier
Reproduction Link
No response
Steps to Reproduce
make 2 vertical sliders and make them sync together
when current secondSlider.index is 0, call secondSlider.go(10) will move to the specific slide with animation speed defined in secondSlider.options
Expected Behaviour
when current secondSlider.index is 0, call secondSlider.go(10, {speed: 0}) for example to override default speed option
Checks
Version
v3.1.7
Description
In my case, i have a combination of multiple sliders synced together and the ui looks very similar to a table with main subject on first column of the table and contents are on the rest of the columns.
the first column is a vertical slider and the rest of columns are horizontal sliders wrapped within a vertical slider which is synced with the first one, so basically i have 2 vertical sliders synced together.
my concern is when i want to
firstSlider.go(index)
how can i disablespeed
option without updating the option likefirstSlider.options = {speed: 0}
?for example, my current index is at 0 and i want to jump down to index 10, the animation makes my eyes itchy.
it would be great if i can pass an option in
go()
function with additional animation speed without changing default options being defined earlierReproduction Link
No response
Steps to Reproduce
secondSlider.index
is 0, callsecondSlider.go(10)
will move to the specific slide with animation speed defined insecondSlider.options
Expected Behaviour
when current
secondSlider.index
is 0, callsecondSlider.go(10, {speed: 0})
for example to override defaultspeed
option