Slider bar Problem - Forum

Forum Navigation
You need to log in to create posts and topics.

Slider bar Problem

I think the VisualNEO Web slider bar not work smooth in fast dragging. I have compared it with the bootstrap sliderbar.

Is there any special reason for this?

 

Uploaded files:
  • You need to login to have access to uploads.

@asmat I think you can drag it as faster as you need if you keep your mouse cursor within the slider boundaries.

asmat has reacted to this post.
asmat

Thank you master Luis.

Hi @luishp,

Is it possible we active this property without keeping our mouse cursor within the slider boundaries?

 

@asmat not sure as it's a BootStrap component.

You can try using a more modern solution instead. Add this code into a Container object:

<div class="slidecontainer">
  <input type="range" ng-model="$root.myvar" min="1" max="100" value="50" class="slider" id="myRange">
</div>

Change $root.myvar with your desired variable (also min, max and value)

Take a look here for styling your slider:

https://www.w3schools.com/howto/howto_js_rangeslider.asp

Regards.

Thank you so much master @luishp!

luishp has reacted to this post.
luishp