npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng-slider

v2.2.6

Published

AngularJS directive slider control.

Downloads

82

Readme

ng-slider NPM version Build Status Total views

Angular directive slider control.

No JQUERY dependency needed anymore

Skins available

Welcome to a fork from awesome job of Egor Khmelev https://github.com/egorkhmelev/jslider

Why

Original implementation provides very nice features but too much for my needs, this one just simplified.

Source files were divided in several files, and not angular integrated.

Screenshot

angular slider demo

Demo

http://darul75.github.io/ng-slider/

How to use it

You should already have script required for Angular.

<script type="text/javascript" src="angular.min.js"></script>

to the list above, you should add:

<link rel="stylesheet" type="text/css" href="ng-slider.min.css">
<script type="text/javascript" src="ng-slider.min.js"></script>

in case you want to use your own template, omit the last line and instead add some template code to your project:

<script type="text/ng-template" id="aw-select.tmpl.html">
    ....
</script>

Then, inject ngSlider in your application module:

angular.module('myApp', ['ngSlider']);

and then just add an input with slider directive name attribute, value and options scope variable attribute.

<input ng-model="value" type="text" id="mySlider1" slider options="options" />

'value' your slider scope end value, as string. 'options' slider scope options value as json. 'ng-disabled' angular common attribute.

$scope.value = "10";
// $scope.value = "10;15"; FOR DOUBLE VIEW

Options

Options for your slider in json format {from:.....}

  • from: start value
  • to: end value
  • step: step value
  • dimension: string, example " $"
  • scale: array for scale
  • round: how many numbers allowed after comma
  • smooth: true/false; false snaps the button to value
  • vertical: true/false; vertical slider, default false
  • skin: empty or 'blue' 'plastic' 'round'
  • css: hash object, do not mix with 'skin' !
  • realtime: triggers changes and model update on every moves
  • threshold: minimum distance allowed between 2 pointers, default both pointers overlap

angular slider css

css: {
	background: {"background-color": "silver"},
	before: {"background-color": "purple"},// zone before default value
	default: {"background-color": "white"}, // default value: 1px
	after: {"background-color": "green"},  // zone after default value
	pointer: {"background-color": "red"}   // circle pointer
	range: {"background-color": "red"} // use it if double value
}
  • callback : function triggering current value, can be useful
// example
callback: function(value, released) {
	// useful when combined with 'realtime' option
	// released it triggered when mouse up
	console.log(value + " " + released);
}

Installation

Using npm:

npm install ng-slider

Using bower:

bower install ng-slider

RELEASE

  • 2.2.5: skin availables + less all css
  • 2.2.4: fix when 2 pointers overlap on limits
  • 2.2.3: mouse up event indicator in callback
  • 2.2.2: default indicator display + visibility and move events
  • 2.2.1: fix disable+default position css+decimal value on init value
  • 2.2.0: handle from greater than to + gap pointer threshold option
  • 2.1.9: fix labels positions while gluing, gap was too big + options changed watch by value
  • 2.1.8: fix labels positions while gluing + realtime model changes option + ngDisable option fix
  • 2.1.7: fix pointer position on click for double value
  • 2.1.6: starting mocha tests
  • 2.1.5: directive refactoring
  • 2.1.4: fix overlap on labels
  • 2.1.3: bug fixes, refactoring, inline options param
  • 2.1.2: bug fixes, changes in z-index via CSS and not js
  • 2.1.1: override css, colors...
  • 2.1.0: bug fixes
  • 2.0.0: no JQuery

Build

You can run the tests by running

npm install

or

npm test

assuming you already have grunt installed, otherwise you also need to do:

npm install -g grunt-cli

Issue

To help me on reproducing any issues, please feel free to modify/fork this fiddle: http://jsfiddle.net/darul75/g9e9n8xc/

Metrics

NPM

who's who

Who use it ? feel free add issue or edit readme with PR, to see how you use it and give some ideas, thx

google?

License

The MIT License (MIT)

Copyright (c) 2013 Julien Valéry

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.