博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery插件layer
阅读量:6254 次
发布时间:2019-06-22

本文共 2519 字,大约阅读时间需要 8 分钟。

//信息框-例1layer.alert('见到你真的很高兴', {icon: 6}); //信息框-例2layer.confirm('你确定你很帅么?', {icon: 3}, function(index){    layer.close(index);    alert('自恋狂');});//信息框-例3layer.msg('这是最常用的吧');//信息框-例4layer.msg('不开心。。', {icon: 5});//信息框-例4layer.msg('玩命卖萌中', function(){//关闭后的操作});//页面层-自定义layer.open({    type: 1,    title: false,    closeBtn: false,    shadeClose: true,    skin: 'yourclass',    content: '自定义HTML内容'});//页面层-佟丽娅layer.open({    type: 1,    title: false,    closeBtn: false,    area: '516px',    skin: 'layui-layer-nobg', //没有背景色    shadeClose: true,    content: $('#tong')});//iframe层-父子操作layer.open({    type: 2,    area: ['700px', '530px'],    fix: false, //不固定    maxmin: true,    content: 'test/iframe.html'});//iframe层-多媒体layer.open({    type: 2,    title: false,    area: ['630px', '360px'],    shade: 0.8,    closeBtn: false,    shadeClose: true,    content: 'http://player.youku.com/embed/XMjY3MzgzODg0'});layer.msg('点击遮罩任意处关闭');//iframe层-禁滚动条layer.open({    type: 2,    area: ['360px', '500px'],    skin: 'layui-layer-rim', //加上边框    content: ['http://layer.layui.com/mobile', 'no']});//加载层-默认风格layer.load();//此处演示关闭setTimeout(function(){    layer.closeAll('loading');}, 2000);//加载层-风格2layer.load(1);//此处演示关闭setTimeout(function(){    layer.closeAll('loading');}, 2000);//加载层-风格3layer.load(2);//此处演示关闭setTimeout(function(){    layer.closeAll('loading');}, 2000);//加载层-风格4layer.msg('加载中', {icon: 16});//打酱油layer.msg('尼玛,打个酱油', {icon: 4});//tips层-上layer.tips('上', '#id或者.class', {    tips: [1, '#0FA6D8'] //还可配置颜色});//tips层-右layer.tips('默认就是向右的', '#id或者.class');//tips层-下layer.tips('下', '#id或者.class', {    tips: 2});//tips层-左layer.tips('左边么么哒', '#id或者.class', {    tips: [4, '#78BA32']});//tips层-不销毁之前的layer.tips('不销毁之前的', '#id或者.class', {    tipsMore: true});//默认promptlayer.prompt(function(val){    layer.msg('得到了'+val);});//屏蔽浏览器滚动条layer.open({    content: '浏览器滚动条已锁',    scrollbar: false});//弹出即全屏var index = layer.open({    type: 2,    content: 'http://www.layui.com',    area: ['300px', '195px'],    maxmin: true});layer.full(index);//正上方layer.msg('灵活运用offset', {    offset: 0,    shift: 6});//还该列举什么呢layer.msg('等我想想…');

 

案列实践

js代码书写

$('.eve_edit').click(function() {            oplayer = layer.open({                type: 2,                title: $(this).attr('title'),                shadeClose: true,                shade: false,                maxmin: true,                area: ['60%', '80%'],                    content: $(this).attr('href')            });            return false;        });

 

转载地址:http://ghjsa.baihongyu.com/

你可能感兴趣的文章
Chapter 5 Blood Type——5
查看>>
在JSON中遇到的一些坑
查看>>
本文将介绍“数据计算”环节中常用的三种分布式计算组件——Hadoop、Storm以及Spark。...
查看>>
C#面试题(转载) SQL Server 数据库基础笔记分享(下) SQL Server 数据库基础笔记分享(上) Asp.Net MVC4中的全局过滤器 C#语法——泛型的多种应用...
查看>>
springmvc中controller内方法跳转forward?redirect?
查看>>
论坛程序推荐,区别
查看>>
spring mvc redirect 重定向 跳转并传递参数
查看>>
《止学》 [隋]文中子(王通)
查看>>
微信小程序之底部弹框预约插件
查看>>
基础知识 - Golang 中的正则表达式
查看>>
分享一个shell脚本的坑:grep匹配+wc取值 在脚本执行后的结果与手动执行结果不一致...
查看>>
【Clojure 基本知识】 关于函数参数的各种高级用法
查看>>
顺序图【6】--☆☆
查看>>
Docker 版本
查看>>
【ABP杂烩】面向切面编程(AOP)知识总结
查看>>
java 如何使用多线程调用类的静态方法?
查看>>
不能运行VS2005的DSL Tool例子
查看>>
OSI/RM参考模型和TCP/IP协议的关系
查看>>
Android Intent用法汇总
查看>>
使用PIP扩展BTARN
查看>>