您好,登錄后才能下訂單哦!
本文實例為大家分享了js實現圖片拖曳效果的具體代碼,供大家參考,具體內容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> #pbox{ width: 100%; height:100%; } #box{ width: 200px; height: 200px; background:red; position: absolute; } </style> </head> <body> <input type="button" id="btn" value="隨機生成"> <div id="pbox"> <div id="box"> </div> </div> </body> <script> var btn=document.getElementById("btn");//獲取按鈕 var box=document.getElementById("box");//獲取box var pbox=document.getElementById("pbox");//獲取pbox var arr=['#fff143','#ff7500','#a3d900','#eedeb0','#ae7000','#b35c44','#392f41','#ff461f','#44cef6','#edd1db','#003371'];//隨機顏色 //給btn注冊點擊事件ain btn.onclick=function(){ pbox.innerHTML="";//清空pbo for(var i=0;i<=10;i++){ var newTip =box.cloneNode(true); pbox.appendChild(newTip); var left=parseInt(Math.random()*(900-100+1) + 100);//隨機生成左邊距 var top=parseInt(Math.random()*(500-100+1) + 100);//隨機生成上邊距 var bg=Math.floor((Math.random()*arr.length));//生成數組隨機數獲得隨機數組下標 box.style.background=arr[bg];//設置顏色 box.style.top=top+"px";//設置上邊距 box.style.left=left+"px";//設置左邊距 } var c=pbox.children; for(var i=0;i< c.length;i++){ c[i].onmousedown=function (e) { // alert(this.offsetLeft); var spacex=e.pageX-this.offsetLeft; var spacey=e.pageY-this.offsetTop; this.onmousemove=function (e) { this.style.left=e.pageX-spacex+"px"; this.style.top=e.pageY-spacey+"px"; } }; c[i].onmouseup=function () { this.onmousemove=null; } } } </script> </html>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。