7.3 練習 - 其它事件
其它拖曳相關的事件
.enter{
background-color: lightgray;
}// 拖曳進去
div1.addEventListener("dragenter", function(e){
div1.classList.add("enter"); // 加上 class
});
// 拖曳離開
div1.addEventListener("dragleave", function(e){
div1.classList.remove("enter"); // 移除 class
});
// 拖曳效果整個結束
drag1.addEventListener("dragend", function(e){
alert("拖曳效果結束");
});Last updated