increment slider in values of 10
I wonder if there is a way to have the slider increment in values of 10 when I slide it (or another number or course)
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I wonder if there is a way to have the slider increment in values of 10 when I slide it (or another number or course)
Hello! Through More properties for Slider specify step property with necessary value.
Have I mentioned how much I love the support here?
Thanks Maryna! Is there a manual that shows all the properties I can set on things? On an other note, if I wanted to set that using a localStorage variable? Can I?
Hi Jason,
Sure you can:
prevar val = localStorage.getItem("val");
Appery("mobileslider").attr("step", val);/preWhere 'mobileslider' is a slider name,
'val' is a localStorage variable name.