JSFiddle - React, Tailwind, and code Playground
HTML
<div style="padding-bottom: 100px;">Scroll down until this text is not visible..</div>
<div class="draggable">...then drag me!</div>
<div style="height: 1000px;"></div>
CSS
.draggable { border: 1px solid #f0f; width: 100px; }
html {
overflow-y: scroll;
}
JavaScript
$(".draggable").draggable();