Skip to content
On this page

Drag 鼠标拖拽

用于拖拽从一个位置到另一位置

基础用法

在DOM标签添加v-os-drag添加为true则会开启拖动,也能传入{}选项进行配置,选项参数后面说明。

This is info message
html
<os-alert
v-os-drag="true">
This is info message
</os-alert>

选项参数

This info message
This primary message
This success message
This warning message
This danger message
参数名类型描述
downFunction 鼠标按下时的回调事件
overFunction 鼠标按下不放一直拖动时的回调事件
upFunction 鼠标放开时的回调事件
html
<os-alert
v-os-drag="{
  down (event) {}
  // ...
}">
This is info message
</os-alert>

Released under the MIT License.