Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML ondragstart 이벤트 속성

<시간/>

HTML ondragstart 이벤트 속성은 사용자가 HTML 문서에서 HTML 요소 또는 요소 텍스트를 드래그하기 시작할 때 트리거됩니다.

구문

다음은 구문입니다 -

<tagname ondragstart=”script”></tagname>

HTML ondragstart 이벤트 Attribute-

의 예를 살펴보겠습니다.

예시

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #FBAB7E;
      background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
      text-align: center;
   }
   .drop-target {
      display: inline-block;
      width: 150px;
      height: 150px;
      border: 2px solid #FFF;
      margin: 1rem;
      vertical-align: middle;
      padding: 20px;
   }
   .circle {
      background: #db133a;
      height: 40px;
      width: 40px;
      border-radius: 50%;
   }
   .show {
      color: #fff;
      font-size: 1.2rem;
   }
</style>
</head>
<body>
<h1>HTML ondragstart Event Attribute Demo</h1>
<div class="drop-target" ondrop="drop(event)" ondragover="allowDrop(event)">
<p ondragstart="dragStart(event)" ondragend="dragFinished(event)" draggable="true" class="circle"></p>
</div>
<div class="drop-target" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<p>Now try to drag and drop the red circle</p>
<div class="show"></div>
<script>
   function dragStart(event) {
      event.dataTransfer.setData("Text", event.target.id);
      document.querySelector(".show").innerHTML = "Started to drag the red circle.";
   }
   function dragFinished(event) {
      document.querySelector(".show").innerHTML = "Finished dragging the red circle.";
   }
   function allowDrop(event) {
      event.preventDefault();
   }
   function drop(event) {
      event.preventDefault();
      event.target.appendChild(document.querySelector('.circle'));
   }
</script>
</body>
</html>

출력

HTML ondragstart 이벤트 속성

이제 ondragstart 이벤트 속성이 어떻게 작동하는지 관찰하기 위해 두 상자 사이에 빨간색 원을 끌어다 놓습니다.

HTML ondragstart 이벤트 속성