⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 moviediv.js

📁 轩圆学生信息管理系统 081029修正了成绩数据浏览时查看单个学生成绩时总分排名显示表格问题。 //===============================================
💻 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 + -