js之滑鼠的拖曳效果
js之滑鼠的拖曳效果
效果如下:
下面是程式碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>滑鼠拖曳效果</title>
<style>
body{
background:black;
}
#box{
position:absolute;
background: rgb(148, 143, 143);
width: 400px;
height: 200px;
box-sizing: border-box;
border: white 2px solid;
}
.topTitle{
cursor: move;
border-bottom: white 2px solid;
background: #cccccc;
text-align: right;
color: white;
height: 20px;
line-height: 20px;
}
.content >div{
background: rgb(148, 143, 143);
height: 50px;
line-height: 50px;
color: white;
text-align: left;
}
</style>
</head>
<body>
<div id="box">
<div class="topTitle"><a href="#">點選回放拖動軌跡</a></div>
<div class="content">
<div>Drag:</div>
<div>offsetTop:</div>
<div>offsetLeft</div>
</div>
</div>
</body>
<script>
var oBox=document.getElementById("box");
var oTopTitle=document.getElementsByClassName("topTitle")[0];
var aDiv= document.querySelectorAll(".content >div");
var offWidth=document.documentElement.clientWidth;
var clHight=document.documentElement.clientHeight;
var i,t;
var state="false";
var oText=document.querySelector(".topTitle a");
oTopTitle.onmousedown=function(even){
var OffsetE=even||window.event;
var flag=true;
//設立邊界:
document.onmousemove=function(even){
state="true";
var ClientE=even||window.event;
l=ClientE.clientX-OffsetE.offsetX;
t=ClientE.clientY-OffsetE.offsetY;
recorde(l,t,flag);
if(l<0){
l=0;
}
if(t<0){
t=0;
}
if(l>offWidth-oBox.offsetWidth){
l=offWidth-oBox.offsetWidth;
}
if(t>clHight-oBox.offsetHeight){
t=clHight-oBox.offsetHeight;
}
oBox.style.left=l+"px";
oBox.style.top=t+"px";
}
document.onmouseup=function(){
console.log(1);
state="false";
document.onmousemove=null;
document.onmouseup=null;
}
OffsetE.preventDefault();
flag=false;
}
oText.onclick=function(){
var reback=recorde(l,t);
var index=reback.strX.length;
setInterval(function(){
if(index<0){
clearInterval();
return;
}
oBox.style.left=reback.strX[index--]
+"px";
oBox.style.top=reback.strY[index--]+"px";
},30);
strX=[];
strY=[];
}
var strX=[];
var strY=[];
function recorde(offsetTop,offsetLeft,flag){
var text1=aDiv[1].innerText;
aDiv[0].innerHTML="Drag:"+"<span style='color:yellow'>"+state+"</span>";
aDiv[1].innerHTML="offsetTop:"+"<span style='color:yellow'>"+offsetTop+"</span>";
aDiv[2].innerHTML="offsetLeft:"+"<span style='color:yellow'>"+offsetLeft+"</span>";
strX.push(offsetTop) ;
strY.push(offsetLeft);
// console.log(strX);
// console.log(strY);
return {
strX,
strY
}
}
</script>
</html>
相關文章
- 如何不使用js實現滑鼠hover彈出選單效果JS
- Js滑鼠畫龍JS
- JavaScript跟隨滑鼠移動的圖片效果JavaScript
- jQuery滑鼠懸浮翻牌效果詳解jQuery
- jQuery滑鼠懸浮聚焦效果詳解jQuery
- css滑鼠懸浮下拉選單效果CSS
- 滑鼠懸浮圖片旋轉效果
- JavaScript實用的表格行滑鼠點選高亮效果JavaScript
- 線上直播原始碼,JS動態效果之,側邊欄滾動固定效果原始碼JS
- 滑鼠懸浮div實現旋轉效果
- 滑鼠懸浮連結動畫高亮效果動畫
- 滑鼠懸浮電風扇旋轉效果
- CSS3滑鼠懸浮元素放大效果CSSS3
- JavaScript滑鼠懸浮出現下拉選單效果JavaScript
- CSS滑鼠懸浮行背景變色效果CSS
- CSS 滑鼠懸浮動畫暫停效果CSS動畫
- JavaScript、CSS實現滑鼠跟隨繁花效果JavaScriptCSS
- 不可思議的純 CSS 實現滑鼠跟隨效果CSS
- 原生JS拖拽效果JS
- js閃爍效果JS
- CSS: hover選擇器的使用(實現滑鼠懸浮效果,滑鼠移上去div顯示)CSS
- 使用js獲取滑鼠座標JS
- 滑鼠劃過星級評分效果詳解
- 滑鼠懸浮圖片實現翻轉效果
- 滑鼠懸浮圖片實現縮放效果
- CSS3滑鼠懸浮div旋轉效果CSSS3
- 滑鼠懸浮實現環形旋轉效果
- CSS3滑鼠懸浮環裝遮罩效果CSSS3遮罩
- CSS滑鼠懸浮圖片動畫放大效果CSS動畫
- CSS滑鼠懸浮圖片模糊切換效果CSS
- UWP 取消GridView、ListView滑鼠選中、懸停效果View
- CSS mask 實現滑鼠跟隨鏤空效果CSS
- js實現打字效果JS
- 滑鼠懸浮圖片出現文字說明效果
- CSS3滑鼠懸浮動畫按鈕效果CSSS3動畫
- CSS3連結<a>滑鼠懸浮動畫效果CSSS3動畫
- CSS3滑鼠懸浮圖片閃動效果CSSS3
- 如何在CSS中對映的滑鼠位置,並實現通過滑鼠移動控制頁面元素效果CSS