<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/Draggable.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/InertiaPlugin.min.js"></script>
<script>
gsap.registerPlugin(Draggable);
Draggable.create(".drag", {
type: "x,y",
edgeResistance: 0.65,
bounds: ".drag-wrapper",
inertia: true
});
</script>



