首页 > web前端 > html教程 > 弹出居中iframe窗口,点击其它位置消失_html/css_WEB-ITnose

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

WBOY
发布: 2016-06-21 09:00:11
原创
1325 人浏览过

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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板