26 lines
809 B
HTML
26 lines
809 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>TODO supply a title</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
|
|
<script src="../src/sliderTelepatic.js"></script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div class="form-group col-12">
|
|
<label>Porcento <span class="range-monitor"> </span> </label>
|
|
<input class="" type="range" name="percent" value="0" min="0" max="100" step="10" />
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$('input[type="range"]').each(function(i, el){
|
|
$(this).sliderTelepatic();
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|