jquery弹出层

这是一个弹出层的插件,有时候做东西的,经常会用到了,所以在次发一下,和大家分享一下! [task]<!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> <title></title> <script src="jquery-1.6.js" type="text/javascript"></script> <link href="lyz.layer.css" rel="stylesheet" type="text/css" /> <script src="lyz.layer.min.js" type="text/javascript"></script> <style type="text/css"> body{font-size: 12px;} h1{text-align: center;} #div1{display: none;} .PopContainer{width: 300px;height: 200px;background-color: Yellow;text-align: center;} .table{width: 100%;border-collapse: collapse;border: 1px solid #999;margin: 5px 0;} .table caption{background: #CBCBB1;line-height: 30px;border: 1px solid #999;font-weight: bold;} .table th{border: 1px solid #999;text-align: center;line-height: 22px;} .table td{border: 1px solid #999;} .table td.example{text-align: right;} .table td.code{text-indent: 10px;background: #eee;} .table td.remark{text-indent: 10px;line-height: 22px;} </style> <script type="text/javascript"> $(function () { $("#btnAlert").click(function () { $.alert({ msg: "这是调用$.alert弹出信息" }); }); $("#btnRight").click(function () { $.right(); }); $("#btnError").click(function () { $.error(); }); $("#btnConfirm").click(function () { $.confirm({ callback: function (result) { if (result) { alert("您选择了\"确定\""); } else { alert("您选择了\"取消\""); } } }); }); $("#btnContainer").click(function () { $.container({ targetId: "#div1", width: 300, height: 200 }); }); $("#btnFrame").click(function () { $.frame({ pageUrl: "http://www.baidu.com/", width: 700, height: 500 }); }); $("#btnCustom").click(function () { $.custom({ content: "<div style='text-align: center;'>hello lyz!</div>", width: 150, height: 100 }); }); }); </script> </head> <body> <h1> lyz.layer1.0弹层插件API</h1> <div id="div1"> <div class="PopContainer"> 这是一个用于弹出的层 <br /> <br /> <br /> <a οnclick="CloseLayer();">关闭</a> </div> </div> <table class='table'> <caption> 实例演示</caption> <tr align='center'> <th width="120"> 示例 </th> <th> 最简洁的调用 </th> <th> 备注 </th> </tr> <tr> <td class="example"> <button id="btnAlert" type="button"> 提示信息</button> </td> <td class='code'> $.alert({ msg: "这是调用$.alert弹出信息" }); </td> <td class="remark"> 专有属性:msg(可选)、callback(可选) </td> </tr> <tr> <td class="example"> <button id="btnRight" type="button"> 成功信息</button> </td> <td class='code'> $.right(); </td> <td class="remark"> 专有属性:msg(可选)、callback(可选) </td> </tr> <tr> <td class="example"> <button id="btnError" type="button"> 错误信息</button> </td> <td class='code'> $.error(); </td> <td class="remark"> 专有属性:msg(可选)、callback(可选) </td> </tr> <tr> <td class="example"> <button id="btnConfirm" type="button"> 询问信息</button> </td> <td class='code'> $.confirm({ callback: function (result) { if (result) { alert("您选择了\"确定\""); } else { alert("您选择了\"取消\""); } } }); </td> <td class="remark"> 专有属性:msg(可选)、callback(可选) </td> </tr> <tr> <td class="example"> <button id="btnContainer" type="button"> 普通弹层</button> </td> <td class='code'> $.container({ targetId: "#div1", width: 300, height: 200 }); </td> <td class="remark"> 专有属性:targetId(必选) </td> </tr> <tr> <td class="example"> <button id="btnFrame" type="button"> iframe弹窗</button> </td> <td class='code'> $.frame({ pageUrl: "http://www.baidu.com/", width: 700, height: 500 }); </td> <td class="remark"> 专有属性:pageUrl(必选) </td> </tr> <tr> <td class="example"> <button id="btnCustom" type="button"> 自定义弹出</button> </td> <td class='code'> $.custom({ content: "&lt;div style=&#39;text-align: center;&#39;&gt;hello lyz!&lt;/div&gt;", width: 150, height: 100 }); </td> <td class="remark"> 自定义调用 </td> </tr> </table> <br /> <table class='table'> <caption> 公共属性</caption> <tr align='center'> <th width="120"> 基本参数 </th> <th> 说明 </th> </tr> <tr> <td class="example"> icon </td> <td class="remark"> 弹出的标题图标(图标路径) </td> </tr> <tr> <td class="example"> title </td> <td class="remark"> 弹出的标题文本 </td> </tr> <tr> <td class="example"> width </td> <td class="remark"> 弹出的层的宽度(默认:0) </td> </tr> <tr> <td class="example"> height </td> <td class="remark"> 弹出的层的高度(默认:0) </td> </tr> <tr align='center'> <th width="120"> 样式参数 </th> <th> </th> </tr> <tr> <td class="example"> background </td> <td class="remark"> 遮罩层背景色(默认:#000(黑色)) </td> </tr> <tr> <td class="example"> opacity </td> <td class="remark"> 透明度(0:完全透明;1:不透明,默认:0.5) </td> </tr> <tr> <td class="example"> duration </td> <td class="remark"> 三种预定淡出(入)速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000),(默认:"normal") </td> </tr> <tr> <td class="example"> showTitle </td> <td class="remark"> 是否显示标题(默认:true) </td> </tr> <tr> <td class="example"> dragOpacity </td> <td class="remark"> drag为true时,拖动弹层时的透明度(默认:1(不透明)) </td> </tr> <tr align='center'> <th width="120"> 动作参数 </th> <th> </th> </tr> <tr> <td class="example"> escClose </td> <td class="remark"> 是不可以按下“ESC”关闭(默认:true) </td> </tr> <tr> <td class="example"> masksClose </td> <td class="remark"> 是否可以点击遮罩层关闭 (默认:false) </td> </tr> <tr> <td class="example"> drag </td> <td class="remark"> 是否可以拖动弹层(暂不支持IE6,默认:false) </td> </tr> </table> <table class='table'> <caption> 公共方法</caption> <tr align='center'> <th width="120"> 名称 </th> <th> 说明 </th> </tr> <tr> <td class="example"> CloseLayer(); </td> <td class="remark"> 调用关闭弹层,一般用于弹出层内触发关闭调用(如果$.frame()里的页面内调用,则为:window.parent.CloseLayer();) </td> </tr> </table> <table class='table'> <caption> 要求</caption> <tr align='center'> <th width="120"> 名称 </th> <th> 说明 </th> </tr> <tr> <td class="example"> jquery-1.6.js </td> <td class="remark"> 该插件基于jquery1.6框架开发,请在调用前务必先引用jquery1.6或以上文件 </td> </tr> </table> </body> </html> [/task] 其中的外部连接的有两个js文件,一个jquery(jquery1.6或以上文件),请自备,另外是一个文件的地址是:lyz.layer.min css样式文件为: [task].masks{ width:100%; height:100%; position:fixed; _position:absolute; top:0; left:0; display:none} .wait{ position:fixed;_position:absolute; top:50%; left:50%; width:34px; height:34px; margin:-17px 0 0 -17px; background-image:url("images/loading.gif")} .popMain{ border:1px solid #ccc; position:fixed; _position:absolute; overflow:hidden; display:none; font-size:12px} .popTitle{ border-bottom:1px solid #ccc; background:#EFEFEF; height:28px; line-height:28px; display:none} .popTitle .text{ float:left; margin-left:6px;} .popTitle .icon{ float:left; margin:6px 0 0 6px; width:16px; height:16px;} .popTitle .close{ float:right; margin:9px 8px 0 0; width:10px; height:10px; background:url(images/close.png) no-repeat; cursor:pointer} .popContent{ background:#fff; overflow:auto} .layer_msg{ padding:0 10px 0 110px} .layer_msg p{ line-height:18px; padding:25px 0 20px; margin:0} .layer_msg .but{ width:100%; text-align:right; bottom:10px} .layer_msg .but button{ width:62px; height:24px; line-height:24px; border:none; cursor:pointer; background:url(images/but.png); margin-left:10px} .layer_msg .but button:hover{ background-position:0 -43px} .layer_msg .but button:active{ background-position:0 -83px} .alert_icon{ background:#fff url(images/alert.gif) no-repeat 35px 22px} .right_icon{ background:#fff url(images/right.gif) no-repeat 35px 22px} .error_icon{ background:#fff url(images/error.gif) no-repeat 35px 22px} .confirm_icon{ background:#fff url(images/confirm.gif) no-repeat 35px 22px} [/task] 另外有一些图片: [gallery link="file"]

转载于:https://www.cnblogs.com/asqq/archive/2012/09/05/3194927.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/379345.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MUL与IMUL区别(微机原理与接口技术 第2版)课后习题3.14、P123

MUL与IMUL的详细区别 乘数位数隐含的被乘数乘积的存放位置举例8位ALAX中MUL BL16位AXDX与AX中&#xff08;DX存放高16位、AX存放低16位&#xff09;MUL BX 课本P97例题 一&#xff09;、将以下指令中的立即数看作是无符号数实现相乘: MOV AL,0B4H ;ALB4H180 解释以下&…

SDL_main导致main找不到入口

SDL main的错误 引用SDL.h就会报这个错误 因为SDL 将main 宏定义为 SDL_main,所以会找不到main入口 可以使用#undef main取消这个宏定义

Java MathContext类| hashCode()方法与示例

MathContext类的hashCode()方法 (MathContext Class hashCode() method) hashCode() method is available in java.math package. hashCode()方法在java.math包中可用。 hashCode() method is used to get the hash code value of this MathContext. hashCode()方法用于获取此M…

实验8 SQL Server 的存储过程

实验8 SQL Server 的存储过程一、实验目的 1.掌握使用T-SQL编程的方法 2.掌握使用T-SQL语句创建一个存储过程并验证 3.掌握创建和执行带参数的存储过程 4.熟练使用系统存储过程、系统函数 二、实验要求 1.创建一个不带参数的存储过程。 2.创建一个带参数的存储过程p_count。 三…

Oracle ——如何确定性能差的 SQL

http://www.toadworld.com/KNOWLEDGE/KnowledgeXpertforOracle/tabid/648/TopicID/TSQ7/Default.aspx 本文主要说明在应用程序内书写和调优 SQL 语句。假设&#xff0c;你已经知道你应用程序中的哪些 SQL 语句需要注意。事实上&#xff0c;这不太容易。那么&#xff0c;我们如何…

C#中的委托和事件(续)

http://www.cnblogs.com/JimmyZhang/archive/2007/09/23/903360.html 欢迎浏览本文的后续文章&#xff1a; C#中的委托和事件(续)PDF 浏览&#xff1a;http://www.tracefact.net/Document/Delegates-and-Events-in-CSharp.pdf文中代码在VS2005下通过&#xff0c;由于VS2003(.Ne…

Java LocalDate类| minusYears()方法与示例

LocalDate类minusYears()方法 (LocalDate Class minusYears() method) minusYears() method is available in java.time package. minusYears()方法在java.time包中可用。 minusYears() method is used to subtract the given years from this LocalDate and return the LocalD…

ffmpeg 命令添加图片水印

使用ffplay预览一下&#xff1a; ffplay -i cctvhttp.flv -vf “moviewatermark.png[watermark];[in][watermark]overlay x10:y10[out]” -x 640 -y 480 参数&#xff1a; 有两个过滤器movie\overlay movie&#xff1a;读取watermark.png输出 [watermark]可以理解自定义的的变…

实验9 SQL Server 的触发器

实验9 SQL Server 的触发器一、实验目的 1.了解触发器的触发过程和类型 2.通过执行SQL脚本&#xff0c;掌握创建触发器并测试触发器 3.掌握通过使用触发器维护数据完整性的方法。 二、实验要求 1.按指定要求创建触发器。 三、实验步骤 1.创建一个名为tr_age的触发器&#xff0…

struts2学习笔记二--准备struts2的学习和开发环境

准备struts2的学习和开发环境1 导包2 参照开发包自带的例子在web.xml文件中配置3 参照开发包自带的例子编写Action类和配置struts.xml文件<struts><package name"demo" namespace"/hello/word"><action name"test" class"cn…

C#实现动态桌面背景图片切换

问题描述&#xff1a;凝视桌面背景&#xff0c;突感如果桌面背景是变化的像win7一样&#xff0c;该多有意思啊。闹钟瞬间产生一个念头&#xff0c;用C#写一个动态切换桌面背景的图片。如何实现这个想法了&#xff0c;我思考了一会儿&#xff0c;想到了如下的一些需要解决的问题…

duration java_Java Duration类| withSeconds()方法与示例

duration java持续时间类withSeconds()方法 (Duration Class withSeconds() method) withSeconds() method is available in java.time package. withSeconds()方法在java.time包中可用。 withSeconds() method is used to represent this Duration with the given seconds. wi…

ffmpeg 命令画中画效果

画中画效果也是和图片水印一样使用movie配合overlay实现 使用ffplay预览一下&#xff1a; ffplay -i cctvhttp.flv -vf “moviecctvhttp.flv[subm];[in][subm]overlayx20:y30[o ut]” -x 640 -y 480 &#xff08;可以看到是有两层视频的&#xff09; 用个不同的视频再测试&…

实验10 SQL Server 数据备份/恢复

实验10 SQL Server 数据备份/恢复一、实验目的 1.了解数据库备份的过程和属性设置&#xff1b; 2.掌握应用企业管理器备份和恢复数据库&#xff1b; 3.掌握应用T-SQL备份和恢复数据库&#xff1b; 4.掌握数据导入/导出的方法。 二、实验要求 1.创建指定数据库的备份. 2.恢复数…

指针和数组

数组的概念与指针的概念联系非常解密。其实数组的标识相当于它的第一个元素的地址&#xff0c;就像一个指针相当于它所指向的第一个元素的地址&#xff0c;因此其实它们是同一个东西 int numbers [20];int * p;下面的赋值为合法的&#xff1a; p numbers; 这里指针p 和numbers…

程序集(初尝,也是为插件程序准备)

拓展名是EXE或者DLL的.net可执行程序称为程序集。 .net程序集与一般的EXE&#xff0c;DLL的区别在于&#xff0c;它包含有metadata。 私有程序集 位于应用程序的目录下。共享程序集 必须有一个特殊的版本号&#xff0c;唯一的名称&#xff0c;通常安装在全局程序集缓存&#xf…

Java BigInteger类| 带示例的shiftLeft()方法

BigInteger类shiftLeft()方法 (BigInteger Class shiftLeft() method) shiftLeft() method is available in java.math package. shiftLeft()方法在java.math包中可用。 shiftLeft() method is used to shift the given number of bits towards the left side in this BigInteg…

汇编语言-011(无符号乘法指令MUL、有符号乘法指令IMUL、对比MUL乘法指令与SHL移位方式、符号位扩展指令,CBW,CWD,CDQ、DIV 无符号除法指令、IDIV 有符号除法指令)

1:无符号乘法指令MUL .386 .model flat,stdcall.stack 4096 ExitProcess PROTO,dwExitCode:DWORD.data val1 WORD 2000h val2 WORD 0100h .code main PROC;8位乘法mov al,5h ;被乘数mov bl,10hmul bl ;AX 0050h ,CF,OF 0;16位乘法mov ax,val1mul val2 ;DX:AX 002000…

编写一个程序,实现将存放在AX和DX中的32位数据循环右移二进制数的4位。(DX存放高字节内容,AX存放低字节内容)

编写一个程序&#xff0c;实现将存放在AX和DX中的32位数据循环右移二进制数的4位。&#xff08;DX存放高字节内容&#xff0c;AX存放低字节内容&#xff09; P151 例4.9 汇编思路&#xff1a; AX右移四位后&#xff0c;使用BH接收AL的低四位数据&#xff0c;得到BH的八位数据…

[转 scrum] 大型项目开发使用敏捷是否合适?不该问的问题

原文地址&#xff1a;http://www.scrumcn.com/agiledev/html/?167.html转载于:https://www.cnblogs.com/cly84920/archive/2010/03/17/4426844.html