간단한 팝업 창 예제의 jQuery 구현

小云云
풀어 주다: 2018-05-15 11:36:52
원래의
6616명이 탐색했습니다.

이 글은 주로 jQuery 팝업창의 간단한 구현 코드를 자세히 소개하고 있습니다. 관심 있는 친구들이 참고하면 도움이 될 것입니다.

오늘 우리는 Jquery 팝업 창의 구성과 사용법에 대해 이야기했습니다.

먼저 참조 파일의 코드를 작성합니다:

// 每个弹窗的标识
var x =0;

var idzt = new Array();

var Window = function(config){
 
 //ID不重复
 idzt[x] = "zhuti"+x; //弹窗ID
 
 //初始化,接收参数
 this.config = {
  width : config.width || 300, //宽度
  height : config.height || 200, //高度
  buttons : config.buttons || '', //默认无按钮
  title : config.title || '标题', //标题
  content : config.content || '内容', //内容
  isMask : config.isMask == false?false:config.isMask || true, //是否遮罩
  isDrag : config.isDrag == false?false:config.isDrag || true, //是否移动
  };
 
 //加载弹出窗口
 var w = ($(window).width()-this.config.width)/2;
 var h = ($(window).height()-this.config.height)/2;
 
 var nr = "<p class=&#39;zhuti&#39; id=&#39;"+idzt[x]+"&#39; bs=&#39;"+x+"&#39; style=&#39;width:"+this.config.width+"px; height:"+this.config.height+"px; background-color:white; left:"+w+"px; top:"+h+"px;&#39;></p>";
 $("body").append(nr);
 
 //加载弹窗标题
 var content ="<p id=&#39;title"+x+"&#39; class=&#39;title&#39; bs=&#39;"+x+"&#39;>"+this.config.title+"<p id=&#39;close"+x+"&#39; class=&#39;close&#39; bs=&#39;"+x+"&#39;>×</p></p>";
 //加载弹窗内容
 var nrh = this.config.height - 75;
 content = content+"<p id=&#39;content"+x+"&#39; bs=&#39;"+x+"&#39; class=&#39;content&#39; style=&#39;width:100%; height:"+nrh+"px;&#39;>"+this.config.content+"</p>";
 //加载按钮
 content = content+"<p id=&#39;btnx"+x+"&#39; bs=&#39;"+x+"&#39; class=&#39;btnx&#39;>"+this.config.buttons+"</p>";
 
 //将标题、内容及按钮添加进窗口
 $(&#39;#&#39;+idzt[x]).html(content);
 
 
 //创建遮罩层
 if(this.config.isMask)
 {
  var zz = "<p id=&#39;zz&#39;></p>";
  $("body").append(zz);
  $("#zz").css(&#39;display&#39;,&#39;block&#39;);
 }
 
 //最大最小限制,以免移动到页面外
 var maxX = $(window).width()-this.config.width;
 var maxY = $(window).height()-this.config.height;
 var minX = 0,
  minY = 0;
 
 //窗口移动
 if(this.config.isDrag)
 {
  //鼠标移动弹出窗
  $(".title").bind("mousedown",function(e){
    
    var n = $(this).attr("bs"); //取标识
    
    //使选中的到最上层
    $(".zhuti").css("z-index",3);
    $(&#39;#&#39;+idzt[n]).css("z-index",4);
    
    //取初始坐标
    var endX = 0, //移动后X坐标
     endY = 0, //移动后Y坐标
     startX = parseInt($(&#39;#&#39;+idzt[n]).css("left")), //弹出层的初始X坐标
     startY = parseInt($(&#39;#&#39;+idzt[n]).css("top")), //弹出层的初始Y坐标
     downX = e.clientX, //鼠标按下时,鼠标的X坐标
     downY = e.clientY; //鼠标按下时,鼠标的Y坐标
     
    //绑定鼠标移动事件
    $("body").bind("mousemove",function(es){
     
     endX = es.clientX - downX + startX; //X坐标移动
     endY = es.clientY - downY + startY; //Y坐标移动
     
     //最大最小限制
     if(endX > maxX)
     {
      endX = maxX;
     } else if(endX < 0)
     {
      endX = 0;
     }
     if(endY > maxY)
     {
      endY = maxY;
     } else if(endY < 0)
     {
      endY = 0;
     }
     
     $(&#39;#&#39;+idzt[n]).css("top",endY+"px");
     $(&#39;#&#39;+idzt[n]).css("left",endX+"px");
     
     window.getSelection ? window.getSelection().removeAllRanges():document.selection.empty(); //取消选中文本
     
     });
   });
  //鼠标按键抬起,释放移动事件
  $("body").bind("mouseup",function(){
   
    $("body").unbind("mousemove");
   
   });
 }
 
 //关闭窗口
 $(".close").click(function(){
  
   var m = this.getAttribute("bs"); //找标识
   $(&#39;#&#39;+idzt[m]).remove(); //移除弹窗
   $(&#39;#zz&#39;).remove(); //移除遮罩 
  
  })
  
  x++; //标识增加
  
}
로그인 후 복사

이 JS 파일은 Jquery 팝업 창의 콘텐츠, 스타일, 위치, 버튼 및 마스크 레이어를 가져옵니다. 팝업창을 처리하려면 인용하기 전에 내부 코드를 잘 살펴보는 것이 가장 좋습니다.

다음은 CSS 스타일 시트입니다.

.zhuti
{
 position:absolute;
 z-index:3;
 font-size:14px;
 border-radius:5px;
 box-shadow:0 0 5px white;
 overflow:hidden;
 color:#333;
}
.title
{
 background-color:#3498db;
 vertical-align:middle;
 height:35px;
 width:100%;
 line-height:35px;
 text-indent:1em;
}
.close{
 float:right;
 width:35px;
 height:35px;
 font-weight:bold;
 line-height:35px;
 vertical-align:middle;
 color:white;
 font-size:18px;
 }
.close:hover
{
 cursor:pointer;
}
.content
{
 text-indent:1em;
 padding-top:10px;
}
.btnx
{
 height:30px;
 width:100%;
 text-indent:1em;
}
.btn
{
 height:28px;
 width:80px;
 float:left;
 margin-left:20px;
 color:#333;
}
#zz
{
 width:100%;
 height:100%;
 opacity:0.15;
 display:none;
 background-color:#ccc;
 z-index:2;
 position:absolute;
 top:0px;
 left:0px;
}
로그인 후 복사

이 스타일 시트에는 각 태그와 필요한 스타일이 작성되어 있어 메인 페이지의 코드 양을 절약하고 메인 페이지를 매우 깔끔하게 만들 수 있습니다. CSS 스타일 시트에서 수정해야 합니다. 참고: 어떤 파일을 참조하든 Jquery 파일은 맨 앞에 배치되어야 합니다. ! !

다음은 메인 페이지 코드입니다.

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery-1.11.2.min.js">
</script>
<script type="text/javascript" src="tanchuang.js">
</script>
<link href="tanchuang.css" rel="external nofollow" rel="stylesheet" type="text/css" />
<style type="text/css">
*{
 margin: 0px auto;
}
</style>
</head>

<body style="background-color:#999">
<p style="width:200px; margin-top:10px">
<input type="button" value="弹出窗口" id="btntc" style="width:100px; height:30px; font-size:18px;" />
</p>


</body>
<script type="text/javascript">
$(document).ready(function(e) {
 
 $(&#39;#btntc&#39;).click(function(){
  
   var html = "<p style=&#39;color:red&#39;>这是测试的弹窗</p>";
   var button ="<input type=&#39;button&#39; value=&#39;确定&#39; /><input type=&#39;button&#39; value=&#39;取消&#39; />";

   var win = new Window({
    
    width : 400, //宽度
    height : 300, //高度
    title : &#39;测试弹窗&#39;, //标题
    content : html, //内容
    isMask : false, //是否遮罩
    buttons : button, //按钮
    isDrag:true, //是否移动
    
    });
  
  })
});
</script>
</html>
로그인 후 복사

마찬가지로 메인 페이지에도 자세한 설명을 추가해 향후 이해에 도움이 되길 바랍니다. 효과를 살펴보겠습니다:

팝업 창을 클릭한 후의 효과:

각 팝업 창이 이동할 수 있고, 셀 수 없이 많은 창이 팝업되는 것을 볼 수 있습니다. 마스크가 true인 경우 두 번째 팝업창이 더 이상 나타나지 않도록 레이어를 true로 변경합니다.

많은 버그를 방지할 수 있는 마스크 레이어의 실용성을 꼭 기억하세요. 팝업창을 사용하려면 반드시 테스트를 거쳐야 문제를 방지할 수 있습니다.

관련 권장 사항:

Dreamweaver 웹 페이지에 팝업 창 정보를 추가하는 방법에 대한 자세한 설명

javascript, html5, css3 사용자 정의 팝업 창

Dreamweaver의 사용 및 기술에 대한 전체 목록 JS 팝업창

위 내용은 간단한 팝업 창 예제의 jQuery 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!