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

溫馨提示×

溫馨提示×

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

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

HTML 如何實現隨意拖動內容位置

發布時間:2020-07-20 13:53:27 來源:億速云 閱讀:1096 作者:Leah 欄目:web開發

這篇文章運用簡單易懂的例子給大家介紹HTML 如何實現隨意拖動內容位置,代碼非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

兩種方式為:拖拽普通標簽位置或拖拽canvas中的文本框位置

1. 實現鼠標拖動標簽元素到任意位置

css 代碼

#range {
    position: relative;
    width: 600px;
    height: 400px;
    margin: 10px;
    background-color: rgb(133, 246, 250);
}

.icon {
    position: absolute;
    height: 100px;
    width: 100px;
    cursor: move;
    background-color: #ff9204;
    user-select: none;
}

html代碼

<p id="range">
    <p class="icon">100*100</p>
</p>

js代碼

const main = document.getElementById('range');
const icon = document.querySelector('.icon');
let move = false;
let deltaLeft = 0, deltaTop = 0;

// 拖動開始事件,要綁定在被移動元素上
icon.addEventListener('mousedown', function (e) {
    /*
    * @des deltaLeft 即移動過程中不變的值
    */
    deltaLeft = e.clientX-e.target.offsetLeft;
    deltaTop = e.clientY-e.target.offsetTop;
    move = true;
})

// 移動觸發事件要放在,區域控制元素上
main.addEventListener('mousemove', function (e) {
    if (move) {
        const cx = e.clientX;
        const cy = e.clientY;
        /** 相減即可得到相對于父元素移動的位置 */   
        let dx = cx - deltaLeft
        let dy = cy - deltaTop

        /** 防止超出父元素范圍 */
        if (dx < 0) dx = 0
        if (dy < 0) dy = 0
        if (dx > 500) dx = 500
        if (dy > 300) dy = 300
        icon.setAttribute('style', `left:${dx}px;top:${dy}px`)
    }
})

// 拖動結束觸發要放在,區域控制元素上
main.addEventListener('mouseup', function (e) {
    move = false;
    console.log('mouseup');
})

2. canvas繪制文本框,并實現鼠標將其拖拽移動到任意位置

css 代碼

.cus-canvas{
    background: rgb(50, 204, 243);
}

.input-ele{
    display: none;
    position: fixed;
    width: 180px;
    border: 0;
    background-color: #fff;
}

html 代碼

<p>
    <canvas id="canvas" class="cus-canvas"  width="800" height="600"></canvas>
    <input id="inputEle" class="input-ele"/>
</p>

js代碼

實現原理為記錄鼠標移動的位置,不斷的重繪矩形框和文本內容

let mouseDown = false;
let deltaX = 0;
let deltaY = 0;
let text = 'hello'
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
const cw = canvas.width, ch = canvas.height;
const rect = {
    x: 20,
    y: 20,
    width: 150,
    height: 50
}

/** 設置文字和邊框樣式 */
ctx.font="16px Arial";
ctx.fillStyle = "#fff"; 
/** 設置為 center 時,文字段的中心會在 fillText的 x 點 */
ctx.textAlign = 'center';
ctx.lineWidth = '2';
ctx.strokeStyle = '#fff';

strokeRect()

const inputEle = document.getElementById('inputEle');
inputEle.onkeyup =  function(e) {
    if(e.keyCode === 13) {
        text = inputEle.value
        strokeRect()
        inputEle.setAttribute('style', `display:none`)
    }
}

canvas.ondblclick = function(e){ 
    inputEle.setAttribute('style', `left:${e.clientX}px;top:${e.clientY}px;display:block`);
    inputEle.focus();
}

canvas.onmousedown = function(e){ 
    /** 獲取視口左邊界與canvas左邊界的距離 加上 鼠標點擊位置與canvas左邊界的長度,這個值是相對移動過程中不變的值 */
    deltaX=e.clientX - rect.x;
    deltaY=e.clientY - rect.y;
    mouseDown = true
};  

const judgeW = cw-rect.width, judgeH = ch-rect.height;

canvas.onmousemove = function(e){ 
    if(mouseDown) {
        /** 相減即可獲得矩形左邊界與canvas左邊界之間的長度 */
        let dx = e.clientX-deltaX; 
        let dy = e.clientY-deltaY; 
        if(dx < 0) {
            dx = 0;
        } else if (dx > judgeW) {
            dx = judgeW;
        }
        if(dy < 0) {
            dy = 0;
        } else if(dy > judgeH) {
            dy = judgeH;
        }
        rect.x = dx;
        rect.y = dy; 
        strokeRect()
    }
};  
canvas.onmouseup = function(e){ 
    mouseDown = false
};  

/** 清除指定區域 */
function clearRect() {
    ctx.clearRect(0, 0, cw, ch)
}

/** 畫矩形 */
function strokeRect() {
    clearRect()

    /** 這里如果不調用 beginPath 歷史的矩形會重新被繪制 */
    ctx.beginPath() 
    ctx.rect(rect.x, rect.y, rect.width, rect.height)
    ctx.stroke();
    // 設置字體內容,以及在畫布上的位置
    ctx.fillText(text, rect.x + 70, rect.y + 30);
}

關于HTML 如何實現隨意拖動內容位置就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

文登市| 建宁县| 安阳县| 邹城市| 张家口市| 敦化市| 凉城县| 平山县| 南江县| 抚松县| 甘洛县| 青田县| 汶川县| 泊头市| 来凤县| 犍为县| 宽城| 额尔古纳市| 平原县| 自贡市| 龙陵县| 兴隆县| 柏乡县| 育儿| 临潭县| 麻栗坡县| 湟中县| 纳雍县| 项城市| 峡江县| 丰原市| 麟游县| 光泽县| 巴彦县| 外汇| 田林县| 桐乡市| 普洱| 桂阳县| 台东县| 兴化市|