📄 moviediv.js
字号:
var dragapproved=false;
var z,x,y,temp1,temp2;
function move()
{
if (event.button==1&&dragapproved){
z.style.pixelLeft=temp1+event.clientX-x;
z.style.pixelTop=temp2+event.clientY-y;
return false;
}
}
function mup()
{
if (!document.all)
return;
if (event.srcElement.className=="LFace"||event.srcElement.className=="lface"){
dragapproved=false;
z=event.srcElement;
z.style.background="#f4f9fe";
z.style.cursor="";
}
}
function drags(){
if (!document.all)
return;
if (event.srcElement.className=="LFace"||event.srcElement.className=="lface"){
dragapproved=true;
z=event.srcElement;
z.style.background="";
z.style.cursor="move";
temp1=z.style.pixelLeft;
temp2=z.style.pixelTop;
if (temp2==0)
{
temp2 = 100;
}
x=event.clientX;
y=event.clientY;
document.onmousemove=move;
}
}
document.onmousedown=drags;
document.onmouseup=mup;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -