在缩略图内显示 jQuery <input> 范围内的值

Displaying value of jQuery <input> range within the thumb

我想要 jQuery <input type='range'> 的当前值显示在 滑块的拇指内 ,像这样:


我已经看到这是可能的,但我不确定从哪里开始编码。

$(function() {
  var handle = $("#custom-handle");
  $("#slider").slider({
    create: function() {
      handle.text($(this).slider("value"));
    },
    slide: function(event, ui) {
      handle.text(ui.value);
    }
  });
});
body {
  font-family: Arial, Helvetica, sans-serif;
}

#custom-handle {
  width: 3em;
  height: 1.6em;
  top: 50%;
  margin-top: -.8em;
  text-align: center;
  line-height: 1.6em;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">

<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>

<div id="slider">
  <div id="custom-handle" class="ui-slider-handle"></div>
</div>