拖拽程式(html+css+javascript)

來源:互聯網
上載者:User

拖拽程式
原理:根據滑鼠的移動來移動被拖拽的元素,滑鼠的移動即x,y座標的變化;元素的移動即style.position的top和left的改變。首先還必須判斷滑鼠是否按下,是否在對應可拖拽元素上按下

基本思路:
記錄拖拽狀態(0:未按下;1:按下)
按下時{
狀態=1;
記錄元素x,y值
記錄滑鼠x,y值
}

移動時{
判斷狀態是否為1
如是1,則:
元素x=現在滑鼠x-原來滑鼠x+元素原X:
元素y=現在滑鼠y-原來滑鼠y+元素原y:
}

放開時{
狀態=0;
判斷是否在所在範圍內,如是,則:
自動調整位置;
}

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.