<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript">
var popup_dragging = false;
var popup_target;
var popup_mouseX;
var popup_mouseY;
var popup_mouseposX;
var popup_mouseposY;
var popup_oldfunction;
function popup_display(x)
{
var win = window.open();
for (var i in x) win.document.write(i+' = '+x[i]+'<br>');
}
// ----- popup_mousedown -------------------------------------------------------
function popup_mousedown(e)
{
var ie = navigator.appName == "Microsoft Internet Explorer";
if ( ie && window.event.button != 1) return;
if (!ie && e.button != 0) return;
popup_dragging = true;
popup_target = this['target'];
popup_mouseX = ie ? window.event.clientX : e.clientX;
popup_mouseY = ie ? window.event.clientY : e.clientY;
if (ie)
popup_oldfunction = document.onselectstart;
else popup_oldfunction = document.onmousedown;
if (ie)
document.onselectstart = new Function("return false;");
else document.onmousedown = new Function("return false;");
}
// ----- popup_mousemove -------------------------------------------------------
function popup_mousemove(e)
{
if (!popup_dragging) return;
var ie = navigator.appName == "Microsoft Internet Explorer";
var element = document.getElementById(popup_target);
var mouseX = ie ? window.event.clientX : e.clientX;
var mouseY = ie ? window.event.clientY : e.clientY;
element.style.left = (element.offsetLeft+mouseX-popup_mouseX)+'px';
element.style.top = (element.offsetTop +mouseY-popup_mouseY)+'px';
popup_mouseX = ie ? window.event.clientX : e.clientX;
popup_mouseY = ie ? window.event.clientY : e.clientY;
}
// ----- popup_mouseup ---------------------------------------------------------
function popup_mouseup(e)
{
if (!popup_dragging) return;
popup_dragging = false;
var ie = navigator.appName == "Microsoft Internet Explorer";
var element = document.getElementById(popup_target);
if (ie)
document.onselectstart = popup_oldfunction;
else document.onmousedown = popup_oldfunction;
}
// ----- popup_exit ------------------------------------------------------------
function popup_exit(e)
{
var ie = navigator.appName == "Microsoft Internet Explorer";
var element = document.getElementById(popup_target);
popup_mouseup(e);
element.style.visibility = 'hidden';
element.style.display = 'none';
}
// ----- popup_show ------------------------------------------------------------
function popup_show()
{
element = document.getElementById('popup');
drag_element = document.getElementById('popup_drag');
exit_element = document.getElementById('popup_exit');
element.style.position = "absolute";
element.style.visibility = "visible";
element.style.display = "block";
element.style.left = (document.documentElement.scrollLeft+popup_mouseposX-10)+'px';
element.style.top = (document.documentElement.scrollTop +popup_mouseposY-10)+'px';
drag_element['target'] = 'popup';
drag_element.onmousedown = popup_mousedown;
exit_element.onclick = popup_exit;
}
// ----- popup_mousepos --------------------------------------------------------
function popup_mousepos(e)
{
var ie = navigator.appName == "Microsoft Internet Explorer";
popup_mouseposX = ie ? window.event.clientX : e.clientX;
popup_mouseposY = ie ? window.event.clientY : e.clientY;
}
// ----- Attach Events ---------------------------------------------------------
if (navigator.appName == "Microsoft Internet Explorer")
document.attachEvent('onmousedown', popup_mousepos);
else document.addEventListener('mousedown', popup_mousepos, false);
if (navigator.appName == "Microsoft Internet Explorer")
document.attachEvent('onmousemove', popup_mousemove);
else document.addEventListener('mousemove', popup_mousemove, false);
if (navigator.appName == "Microsoft Internet Explorer")
document.attachEvent('onmouseup', popup_mouseup);
else document.addEventListener('mouseup', popup_mouseup, false);
</script>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
/* <style> */
div.sample_popup { z-index: +1; }
div.menu_form_header{
cursor:move
}
div.sample_popup div.menu_form_header
{
border: 1px solid black;
border-bottom: 0px;
cursor: default;
width: 200px;
height: 20px;
line-height: 19px;
vertical-align: middle;
background: url('http://www.waaku.com/bbs/ojbbs/imgs/1.png') no-repeat;
text-decoration: none;
font-family: "Times New Roman", Serif;
font-weight: 900;
font-size: 13px;
color: #206040;
}
div.sample_popup div.menu_form_body
{
border: 1px solid black;
width: 200px;
background: url('http://www.waaku.com/bbs/ojbbs/imgs/2.png') no-repeat left bottom;
}
div.sample_popup img.menu_form_exit
{
float: right;
margin: 4px 5px 0px 0px;
cursor: pointer;
}
div.sample_popup table
{
border-collapse: collapse;
width: 100%;
}
div.sample_popup th
{
width: 1%;
padding: 0px 5px 1px 0px;
text-align: left;
font-family: "Times New Roman", Serif;
font-weight: 900;
font-size: 13px;
color: #004060;
}
div.sample_popup td
{
width: 99%;
padding: 0px 0px 1px 0px;
}
div.sample_popup form
{
margin: 0px;
padding: 8px 10px 10px 10px;
}
div.sample_popup input.field
{
border: 1px solid #808080;
width: 95%;
font-family: Arial, Sans-Serif;
font-size: 12px;
}
div.sample_popup input.btn
{
margin-top: 2px;
border: 1px solid #808080;
background-color: #DDFFDD;
font-family: Verdana, Sans-Serif;
font-size: 11px;
}
a {
color: #FF0000;
text-decoration: none;
}
</style>
</head>
<body>
<input type="button" onclick="popup_show()" value='登录'/>
<div class="sample_popup" id="popup" style="visibility: hidden; display: none;">
<div class="menu_form_header" id="popup_drag">
<img class="menu_form_exit" id="popup_exit" src="http://bbs.blueidea.com/attachments/2007/7/11/20070711_45970b8e6254b86494b4cIUp1bV26gbe.png" />
Login
</div>
<div class="menu_form_body">
<form method="post" action="">
<table>
<tr>
<th>Username:</th>
<td><input class="field" type="text" onfocus="select();" /></td>
</tr>
<tr>
<th>Password:</th>
<td><input class="field" type="password" onfocus="select();" /></td>
</tr>
<tr>
<th> </th>
<td><input class="btn" type="submit" value="Submit" /></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</body>
</html>
分享到:
相关推荐
new_Transportation - 100 -2ceng.py
CENG_2034_2020_FINAL_HOMEWORK Ceng_2034操作系统最终作业进程和线程实现2 使用Hashlib查找重复图像创建父子流程库: 操作系统,此模块提供了使用依赖于操作系统的功能的可移植方式。 hashlib,此模块为许多不同的...
2. **网页浏览记录**:记录用户访问过的网站,以便用户回顾自己的网络浏览历史,同时可能提供搜索关键词、停留时间等详细信息,便于自我监督。 3. **时间管理**:为网络使用设置时间限制,防止长时间沉迷于网络,...
层次分析法是将决策问题按总目标、各层子目标、评价准则直至具体的备投方案的顺序分解为不同的层次结构,然后得用求解判断矩阵特征向量的办法,求得每一层次的各元素对上一层次某元素的优先权重,最后再加权和的方法...
2. **Python编程**:重点讲解如何使用Python语言进行硬件控制,如通过GPIO(通用输入/输出)接口与微控制器通信,或者利用Python库如PySerial、RPi.GPIO(针对Raspberry Pi)进行串口通信和硬件控制。 3. **嵌入式...
在信息技术与石油天然气行业的交汇点,我们发现了一款独特的软件开发项目——"kmig_ceng.rar_*行业应用_Visual_C++_"。这个项目的核心在于利用Visual C++编程语言在Windows操作系统环境下,开发了一个专门针对石油...
【Ceng网监视V0.04】是一款专用于网络监控的软件,其核心功能在于对局域网内的设备活动进行监测。这个特别版的独特之处在于它可以排除多达10个特定的MAC地址,这意味着用户可以选择忽略某些不希望被监控的设备,可能...
组件布局 Layout字体库 Fonts样式 Style组件 Componentspui.ceng.js _ 弹层pui.table.js _ 表格pui.radio.js _ 单选pui.checkbox.js 复选pui.page.js _ 分页pui.switch.js _ 开关pui.select.js _ 下拉菜单pui.query....
2. **G代码转换为图形**:这个过程是为了可视化G代码程序,帮助程序员更好地理解刀具路径和工件形状。通过软件工具,可以将G代码解析并生成对应的二维或三维图形,使得非编程人员也能理解加工过程。这样有助于检查和...
css3实现的点击按钮弹出无刷新交互遮罩层特效源码是一段实现了点击按钮后会直接弹出一个悬浮的无刷新交互遮罩层效果,在此遮罩层内会出现相关的内容及表单、按钮效果,功能非常强大且实用,本段代码适应于所有网页...
2. **物理层的特性**:包括数据速率、信号类型(模拟或数字)、传输模式(单工、半双工或全双工)、电缆类型(如双绞线、同轴电缆、光纤等)和连接器标准(如RJ-45、BNC、AUI等)。 3. **物理层协议**:例如EIA/TIA...
由于现在无线路由器的普及,蹭网的人越来越多,使大家深受其害,现在简单说说如何看有没有人蹭网
【标题】:“ceng网监视看主人是否正在上网”指的是一个特定的软件工具,它具有监控网络连接状态的功能,特别是用于检测某个网络的使用者(即“主人”)是否正在使用互联网。这个工具可能是针对那些蹭网(即非法或未...
4. **安全设置**:除了监控,Ceng网监视还提供了基础的网络安全设置建议,如更改路由器默认密码、开启WPA2加密等,以增强无线网络的安全性。 5. **操作简便**:作为一款绿色版软件,Ceng网监视无需复杂的配置,用户...
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script> ``` 然后,我们编写JavaScript代码来实现树形菜单的交互功能。这部分代码分为两个主要部分: 1. 初始化菜单项的...
ceng112_homeworks:Github存储库用于我们在ceng112中的作业
2-产品管理应用程序-详细信息在ProductManagementApp / CENG431_Midterm2_Project.pdf中:-复合设计模式-状态设计模式-GRASP原理-面向对象的分析和设计-面向对象的基础知识,抽象数据类型-继承,多态性,抽象类,...
Ceng网从入门到精通本教程全部使用cdlinux中的minidwep-gtk工具可以破解WAP-WPA2
Metu-CENG 2016-2020 使用子模块克隆(因为有些课程有自己的存储库,所以我将它们绑定为该根存储库的子模块): git clone --recursive git@github.com:ysyesilyurt/Metu-CENG.git 另外,如果在克隆时未使用--...