色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

bootstrap 拖拽div

張振鋒1年前6瀏覽0評論

Bootstrap是一個流行的前端開發框架,提供了豐富的CSS和JavaScript組件,方便開發人員快速構建響應式網頁。其中,拖拽div是Bootstrap中常用的功能之一。通過使用拖拽div,用戶可以用鼠標輕松地拖動和重新排列頁面上的元素,從而實現更靈活的布局和交互效果。


下面將通過幾個代碼案例來詳細說明如何使用Bootstrap實現拖拽div的功能。


第一個案例是基于Bootstrap的簡單拖拽div效果。

<code>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link  rel="stylesheet">
<title>Draggable Div</title>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-4 draggable">
<h4>Drag Me!</h4>
</div>
<div class="col-md-4 draggable">
<h4>Drag Me too!</h4>
</div>
</div>
</div>
<br>
  <!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Draggable Div Script -->
<script>
$(function() {
$(".draggable").draggable();
});
</script>
</body>
</html>
</code>

在上述代碼中,引入了Bootstrap的CSS和JavaScript文件,然后創建了一個容器,其中包含兩個帶有"class=draggable"屬性的\<div\>元素,這將使它們具有可拖拽的功能。接下來,通過引入jQuery和Bootstrap的JavaScript文件,并使用jQuery中的draggable()方法,為具有"class=draggable"屬性的元素添加了拖拽功能。


第二個案例是基于Bootstrap的拖拽div與排序功能的綜合應用。

<code>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link  rel="stylesheet">
<link  rel="stylesheet">
<title>Draggable Div with Sorting</title>
</head>
<body>
<div class="container mt-5">
<div class="row sortable">
<div class="col-md-4 draggable">
<h4>Drag Me!</h4>
</div>
<div class="col-md-4 draggable">
<h4>Drag Me too!</h4>
</div>
</div>
</div>
<br>
  <!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- jQuery UI -->
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Draggable Div Script -->
<script>
$(function() {
$(".draggable").draggable();
$(".sortable").sortable();
});
</script>
</body>
</html>
</code>

在上述代碼中,與第一個案例相比,除了拖拽功能外,我們還引入了jQuery UI庫的樣式表和JavaScript文件,并使用sortable()方法為具有"class=sortable"屬性的元素添加了排序功能。


通過以上兩個案例,我們可以看到使用Bootstrap拖拽div的實現非常簡單,只需要通過添加相應的CSS類和調用相關JavaScript方法即可實現拖拽和排序的功能。這為開發人員提供了更多靈活的頁面布局和交互效果的選擇,大大簡化了前端開發的工作。