Jquery 弹出框出插件 仿IOS效果
摘要:iOS Dialog Box 是一个 jQuery 插件实现了类似 iOS 应用中的对话框效果。使用: <!doctype html><html> <meta charset="UTF-8"> <title>iOS Dialog Box Samples</title> <script src="jquery.min.js"></script> <script src="iOSdialogBox.js"></script> <
阅读全文
posted @
2012-11-04 21:50
NeverGiveUp_ZONE
阅读(503)
推荐(0)
判断是否纯IE浏览器 JS
摘要:function isTrueIE() { if (navigator.userAgent.indexOf("MSIE") > 0) { // ie 内核 if (navigator.userAgent.indexOf("Tablet PC") > 0) { // x64 纯ie return true; } else if (navigator.userAgent.indexOf("Maxthon") > 0 || navigator.userAgent.indexOf("SE...
阅读全文
posted @
2012-11-01 14:55
NeverGiveUp_ZONE
阅读(646)
推荐(0)
JS 遮罩 Mask
摘要:一、介绍 Spin.js是一个用于创建过程进度提醒控件的框架,使用CSS3来渲染UI,当浏览器不支持时,采用VML支持。不需要图片,没有外部CSS,没有依赖其它框架,高度可配置,分辨率无关,兼容所有主流浏览器包括IE6二、使用 1 var opts = { 2 lines: 7, // The number of lines to draw 3 length: 14, // The length of each line 4 width: 2, // The line thickness 5 radius: 0...
阅读全文
posted @
2012-10-31 21:34
NeverGiveUp_ZONE
阅读(1365)
推荐(0)