Here are
310 public repositories
matching this topic...
Create and reorder lists with drag-and-drop. For use with modern browsers and touch devices
Updated
Jan 10, 2021
JavaScript
The JavaScript Drag & Drop library your grandparents warned you about.
Updated
Jan 18, 2021
JavaScript
Infinite responsive, sortable, filterable and draggable layouts
Updated
Jan 9, 2021
JavaScript
Moveable! Draggable! Resizable! Scalable! Rotatable! Warpable! Pinchable! Groupable! Snappable!
Updated
Jan 16, 2021
TypeScript
Fast and versatile Adapter for RecyclerView which regroups several features into one library to considerably improve the user experience :-)
Updated
Jun 10, 2019
Java
一个帮助您完成从缩略视图到原视图无缝过渡转变的神奇框架
🖱 A resizable and draggable component for React.
Updated
Jan 6, 2021
TypeScript
Vue2 Component for draggable and resizable elements.
Updated
Dec 17, 2020
JavaScript
A simple and customizable Android full-screen image viewer 一个简单且可自定义的Android全屏图像浏览器
Updated
Aug 14, 2020
Kotlin
react wrapper components for smooth-dnd
Updated
Jul 1, 2020
TypeScript
A modern, lightweight, performant, accessible and extensible drag & drop toolkit for React.
Updated
Jan 16, 2021
TypeScript
Vue wrapper components for smooth-dnd
Updated
Dec 11, 2020
JavaScript
Vue Component for resize and drag elements
Updated
Aug 13, 2020
JavaScript
可拖拽的红点,(仿新版QQ,tab下面拖拽标记为已读的效果),拖拽一定的距离可以消失回调。
Updated
Feb 22, 2015
Java
↔️ ↕️ 🔄 Vue.js wrapper for Moveable
Enjoyable content drag-to-scroll library
Updated
Dec 12, 2020
JavaScript
A super tiny Javascript library to make DOM elements draggable and movable. ~500 bytes and no dependencies.
Updated
Jan 5, 2021
JavaScript
React tree component with drag & drop
Updated
Nov 25, 2020
JavaScript
a dragger layout system with React style .
Updated
Mar 11, 2019
TypeScript
Vue 用于可调整大小和可拖动元素的组件并支持冲突检测、元素吸附、元素对齐、辅助线
Updated
Jan 5, 2021
JavaScript
A responsive, draggable and resizable grid layout, for Svelte.
Updated
Jan 17, 2021
Svelte
Gijgo - Free Javascript Controls
Updated
Sep 26, 2020
JavaScript
Qt Frameless Window for both Windows and OS X, support Aero Snap, drop shadow on Windows, and support Native Style such as round corner, drop shadow on OS X. Based on QMainWindow.
drag and drop library for javascript
Updated
Oct 22, 2020
TypeScript
Angular 2+ binding to SortableJS. Previously known as angular-sortablejs
Updated
Dec 25, 2020
TypeScript
Updated
Mar 24, 2020
Java
The simple and high performance library to allow HTML/SVG element to be dragged.
Updated
Sep 17, 2020
JavaScript
Please use the he-tree-vue, vue-draggable-nested-tree will no longer be maintained.
Updated
Jan 29, 2020
JavaScript
Vue2 directive that handles drag & drop
Updated
Feb 11, 2020
TypeScript
Improve this page
Add a description, image, and links to the
draggable
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
draggable
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
I just noticed that if you try and create a Range control which has the following props
<Range step={0.1} min={0.1} max={50} ... />it will emit aThe difference of max and min must be divisible by stepwarning.This appears to be because
(50 - 0.1) / 0.1equals498.99999999999994in JavaScript, but the expressionparseInt(res.toString(), 10)actually just returns498. Most calculat