jquery弹出遮掩层效果【附实例代码】
作者:bea
找了个别人写的遮掩层进行改善,感觉效果还可以。 效果图: 代码: <!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>t
找了个别人写的遮掩层进行改善,感觉效果还可以。
效果图:
代码:
<!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>tipswindown</title>
<link href="css/tipswindown.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.8.js" type="text/javascript"></script>
<script src="js/tipswindown.js" type="text/javascript"></script>
<style type="text/css">
#main{width:300px;margin:50px auto;font-family: Arial, Calibri;}
#main .btn {width:150px;height:30px;line-height:30px;font-size:14px; vertical-align:middle; color: #333333; font-weight:bold; text-decoration:none; display:block; text-align:center;background: #CCC;}
#main .btn:hover{vertical-align:middle; color: #fff; font-weight:bold; text-decoration:none;display:block; text-align:center;background: #333;}
</style>
<script type="text/javascript">
$(function () {
$("#DialogShow").click(function () {
tipsWindown("CnBlogs", "id:dialog", "450", "200", "true", "", "true", "id");
});
})
function Ok() {
window.location.href = "http://www.cnblogs.com/";
}
function Cancel() {
$("#windownbg").remove();
$("#windown-box").fadeOut("1000", function () { $(this).remove(); });
}
</script>
</head>
<body>
<div id="main">
<a href="javascript:void(0);" class="btn" id="DialogShow">DialogShow</a>
</div>
<div id="dialog" style="display:none";>
<div class="dialogtext">
<p>Please click on the ok button to go the http://www.cnblogs.com/ website and you should just wait. </p>
<p>If you are accessing this page by mistake please click on the cancel link.</p>
</div>
<div class="dislogbtn">
<a href="javascript:void(0);" class="btn" id="Ok" onclick="Ok()">Ok</a>
<a href="javascript:void(0);" class="btn" id="Cancel" onclick="Cancel()">Cancel</a>
</div>
</div>
</body>
</html>
以上这篇jquery弹出遮掩层效果【附实例代码】就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
猜你喜欢
您可能感兴趣的文章:
- jQuery Ajax 实例代码 ($.ajax、$.post、$.get)
- 一个字符串中出现次数最多的字符 统计这个次数【实现代码】
- JS弹出层遮罩,隐藏背景页面滚动条细节优化分析
- 老生常谈遮罩层 滚动条的问题
- 弹出遮罩层后禁止滚动效果【实现代码】
- 一系列Bootstrap导航条使用方法分享
- Bootstrap实现下拉菜单效果
- Easyui Treegrid改变默认图标的方法
- Jquery EasyUI实现treegrid上显示checkbox并取选定值的方法
- JS组件Bootstrap导航条使用方法详解
- Easyui 之 Treegrid 笔记
- 浅析BootStrap模态框的使用(经典)
- jQuery模仿阿里云购买服务器选择购买时间长度的代码
- JavaScript函数柯里化详解
- easyui validatebox验证
- 浅析Bootstrap缩略图组件与警示框组件
- javascript中利用柯里化函数实现bind方法
- Bootstrap模态对话框的简单使用
- jquery UI Datepicker时间控件的使用及问题解决