91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用JavaScript怎么實現一個盒子拖拽效果

發布時間:2021-04-16 17:58:50 來源:億速云 閱讀:186 作者:Leah 欄目:web開發

使用JavaScript怎么實現一個盒子拖拽效果?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

html代碼:

<!DOCTYPE html>
<html lang="en">
 
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>拖拽</title>
<body>
  <div class="leftBox"></div>
  <div class="rightBox">
    <!-- 開啟拖拽屬性draggable -->    
    <div class="circle" draggable="true"></div>
  </div>
</body>
 
</html>

css代碼:

<style>
    .leftBox {
      display: inline-block;
      width: 100px;
      height: 100px;
      border: 1px solid black;
      border-radius: 10px;
      position: relative;
    }
 
    .rightBox {
      display: inline-block;
      width: 100px;
      height: 100px;
      border: 1px solid black;
      border-radius: 10px;
      position: relative;
    }
 
    .circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: radial-gradient(25px at center, white, skyblue);
      /* 絕對居中 */
      position: absolute;
      left: 50%;
      margin-left: -25px;
      top: 50%;
      margin-top: -25px;
    }
  </style>

js代碼:

<script>
  //獲取dom元素,分別是左盒子 圓圈 右盒子
  var leftBox = document.querySelector('.leftBox');
  var circle = document.querySelector('.circle');
  var rightBox = document.querySelector('.rightBox');
  var text = document.querySelector('.text');
 
  //移動circle
  circle.
 
  //開啟左盒子的移入事件
  leftBox.ondragover = function (event) {
    event.preventDefault();
  }
  leftBox.ondrop = function () {
    leftBox.appendChild(circle);
  }
 
  //開啟右盒子的移入事件
  rightBox.ondragover = function (event) {
    event.preventDefault();
  }
  rightBox.ondrop = function () {
    rightBox.appendChild(circle);
  }
 
</script>

使用JavaScript怎么實現一個盒子拖拽效果

看完上述內容,你們掌握使用JavaScript怎么實現一個盒子拖拽效果的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

舒城县| 宁都县| 莲花县| 思南县| 敖汉旗| 东光县| 沙田区| 塔河县| 清徐县| 什邡市| 绥德县| 丘北县| 古田县| 桐梓县| 望江县| 抚松县| 威信县| 清水县| 禄丰县| 乐陵市| 红安县| 秭归县| 申扎县| 扬州市| 平南县| 泉州市| 六安市| 晋城| 永安市| 临江市| 五寨县| 博乐市| 福泉市| 汕头市| 华安县| 山丹县| 固始县| 溧水县| 小金县| 木兰县| 卫辉市|