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)
js 窗口自适应大小
摘要:function init(){ if( document.body.scrollWidth > (window.screen.availWidth-100) ){ window.dialogWidth = (window.screen.availWidth-100).toString() + "px" } else{ window.dialogWidth = (document.body.scrollWidth +10).toString() + "px" } if( document.body.scrollHeight > (window
阅读全文
posted @
2012-08-22 17:46
NeverGiveUp_ZONE
阅读(5913)
推荐(0)
jQuery插件imgAreaSelect使用
摘要:Imgareaselect 是一个 允许用户使用简单、直观的点击、拖动界面图像选择矩形区域的jQuery插件。该插件可用于 web 应用程序中轻松实现图像裁剪功能,以及其他功能,如照片标记、 图像编辑功能,等等.支持浏览器: Firefox 2+, Opera 9.5+, Google Chrome, Safari 3+, and Internet Explorer 6+.一、加载<head> ... <linkrel="stylesheet"type="text/css"href="css/imgareaselect-def
阅读全文
posted @
2012-08-22 17:39
NeverGiveUp_ZONE
阅读(6298)
推荐(0)