码迷,mamicode.com
首页 > Web开发 > 详细

简单的用jQuery做遮罩效果

时间:2017-05-25 18:21:12      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:utf-8   idt   lan   title   pre   html   class   z-index   osi   

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>用jquery做遮罩</title>
<style>
.all{
width:100%;
height:500px;
background: red;
position: relative;
}
.mask {
width:100%;
height:500px;
position: absolute;
display: none;
background:rgba(0,0,0,.5);
z-index:1000;
}
</style>
</head>
<body>
<div class="all">
<div id="mask" class="mask"></div>
</div>
</body>
<script src="jquery-1.11.3.min.js"></script>
<script>
(function(){
$(function(){
$(".all").click(function () {
$("#mask").slideToggle(1000);
});
});
})()
</script>
</html>
jQuery的代码一点点,是不是简单啊!!!哈哈哈

简单的用jQuery做遮罩效果

标签:utf-8   idt   lan   title   pre   html   class   z-index   osi   

原文地址:http://www.cnblogs.com/zhangyy520/p/6905160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!