弹出居中iframe窗口,点击其它位置消失_html/css_WEB-ITnose

WBOY
發布: 2016-06-21 09:00:11
原創
1303 人瀏覽過

1.html

<a class="info_show" href="javascript:;" onclick="detail(22)" >弹出详情</a><br /><iframe id="myFrameId" src="https://www.baidu.com" name="myFrameName" scrolling="no" frameborder="0"></iframe>
登入後複製

2.css

#myFrameId{	width:800px;	height:600px;	position: absolute;	display:none;}
登入後複製

3.js

function detail(id){    $('#myFrameId').attr('src','https://www.baidu.com');    $('#myFrameId').show();    iframe_height = $(window).height()-600;    iframe_width = $(document).width()-800;    iframe_height>0?iframe_height=(iframe_height/2):iframe_height=0;    iframe_width>0?iframe_width=(iframe_width/2):iframe_width=0;    $('#myFrameId').css('top',iframe_height);    $('#myFrameId').css('left',iframe_width);}$(document).on("click", function(e){    console.log('123');    $('#myFrameId').hide();});$(".myFrameId,.info_show").on("click", function(e){    console.log('456');    e.stopPropagation();});
登入後複製


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板