使用 iosOverlay 弹出提示信息
类别:Web前端 浏览量:485
时间:2014-12-3 使用 iosOverlay 弹出提示信息
使用 iosOverlay 弹出提示信息一、iosOverlay效果图
二、iosOverlay插件下载的地址: http://taitems.github.io/iOS-Overlay/
三、iosOverlay 的使用方法
1、加载插件和jQuery
<link rel="stylesheet" href="css/iosOverlay.css">
<script src="js/jquery.min.js"></script>
<script src="js/iosOverlay.js"></script>
<script src="js/spin.min.js"></script>
2、例如页面html代码如下
<p class="container">
<button id="loading" class="btn">Loading Spinner</button>
<button id="checkMark" class="btn">Success</button>
<button id="cross" class="btn">Error</button>
</p>
<p class="container">
<button id="loadToSuccess" class="btn">Loading Then Success</button>
</p>
3、点击 id="loading" 触发的事件 (Loading提示)
$(document).on("click", "#loading", function(e) { var opts = { lines: 13, // The number of lines to draw length: 11, // The length of each line width: 5, // The line thickness radius: 17, // The radius of the inner circle corners: 1, // Corner roundness (0..1) rotate: 0, // The rotation offset color: '#FFF', // #rgb or #rrggbb speed: 1, // Rounds per second trail: 60, // Afterglow percentage shadow: false, // Whether to render a shadow hwaccel: false, // Whether to use hardware acceleration className: 'spinner', // The CSS class to assign to the spinner zIndex: 2e9, // The z-index (defaults to 2000000000) top: 'auto', // Top position relative to parent in px left: 'auto' // Left position relative to parent in px }; var target = document.createElement("li"); document.body.appendChild(target); var spinner = new Spinner(opts).spin(target); iosOverlay({ text: "Loading", //提示的信息可以自定义 duration: 2e3, //提示的时间长短 spinner: spinner }); });
4、点击 id="checkMark" 触发的事件 (成功提示)
$(document).on("click", "#checkMark", function(e) {
iosOverlay({
text: "Success!",
duration: 2e3,
icon: "img/check.png"
});
});
5、点击 id="cross" 触发的事件 (错误提示)
$(document).on("click", "#cross", function(e) {
iosOverlay({
text: "Error!",
duration: 2e3,
icon: "img/cross.png"
});
return false;
});
6、 点击 id="loadToSuccess" 触发的事件 (Loading提示后再提示成功或者失败)
$(document).on("click", "#loadToSuccess", function(e) {
var opts = {
lines: 13, // The number of lines to draw
length: 11, // The length of each line
width: 5, // The line thickness
radius: 17, // The radius of the inner circle
corners: 1, // Corner roundness (0..1)
rotate: 0, // The rotation offset
color: '#FFF', // #rgb or #rrggbb
speed: 1, // Rounds per second
trail: 60, // Afterglow percentage
shadow: false, // Whether to render a shadow
hwaccel: false, // Whether to use hardware acceleration
className: 'spinner', // The CSS class to assign to the spinner
zIndex: 2e9, // The z-index (defaults to 2000000000)
top: 'auto', // Top position relative to parent in px
left: 'auto' // Left position relative to parent in px
};
var target = document.createElement("li");
document.body.appendChild(target);
var spinner = new Spinner(opts).spin(target);
var overlay = iosOverlay({
text: "Loading",
spinner: spinner
});
window.setTimeout(function() {
overlay.update({
icon: "img/check.png",
text: "Success"
});
}, 3e3);
window.setTimeout(function() {
overlay.hide();
}, 5e3);
return false;
});
7、如果需要修改提示字体的大小等样式信息
全局修改:将 iosOverlay 样式表里面的 .ui-ios-overlay .title 里面的 font-size 修改
Jquery 动态修改:$(" .ui-ios-overlay .title").css("font-size"," ")
标签:弹出提示信息
热门推荐
- linux模糊删除多个文件(Linux删除文件不同方法效率对比)
- 移动端文字过多显示省略号
- python怎么自动生成报告(python根据文章标题内容自动生成摘要的实例)
- 怎么用python做随机矩阵(python实现杨氏矩阵查找)
- 搭建ftp服务器操作步骤(浅谈FTP服务器架设的两种方法)
- laravel框架配置(Laravel框架实现多数据库连接操作详解)
- php连接数据库拒绝使用域名(访问php时提示内存位置访问无效的解决办法和思路分析)
- 用python画圣诞树送给女朋友(情人节快乐! python绘制漂亮玫瑰花)
- ftp服务器登录错误(登陆FTP服务器提示530 Login authentication failed 错误的解决方法)
- 如何使用rem开发移动端页面(移动端rem布局的两种实现方法)