veloxi实现拖动方块回弹到原位动画效果代码

代码语言:html

所属分类:拖放

代码描述:veloxi实现拖动方块回弹到原位动画效果代码

代码标签: veloxi 拖动 方块 回弹 原位 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
<style>
body {
  height: 100vh;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.box {
  width: 100px;
  height: 100px;
  background: whitesmoke;
  border-radius: 5px;
  touch-action: none;
  will-change: transform;
}
</style>


  
</head>

<body>
  <div
  class="box"
  data-vel-view="draggable"
  data-vel-plugin="DragPlugin"
></div>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/veloxi.0.0.1.js"&g.........完整代码请登录后点击上方下载按钮下载查看

网友评论0