100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > html运用javascript设计弹窗 javascript弹出窗口实现代码

html运用javascript设计弹窗 javascript弹出窗口实现代码

时间:2019-04-11 13:11:37

相关推荐

html运用javascript设计弹窗 javascript弹出窗口实现代码

很多网页都实现了弹出窗口,使用方面,特别的人性化,本文就大家介绍javascript实现弹出窗口特效,具体代码如下:

弹出窗口

*{

margin: 0;

padding: 0;

}

div{

margin: 0 auto;

/*border: 1px solid red;*/

}

.overBg{

width: 100%;

height: 100%;

background: gray;

opacity: 0.5;

filter: alpha(opacity=50);

position: fixed;

top:0;

z-index: 300;

}

.tc-con{

width: 200px;

height: 200px;

padding: 30px;

background: blanchedalmond;

position: fixed;

top: 0;

z-index: 1000;

}

$(function(){

$('.tc').hide();

$('.btn').click(function(){

$('.tc').show();

})

$('.tc').click(function(){

$(this).hide();

})

})

点击出现22

var a=document.getElementById('tc-con');

a.style.left=(document.body.clientWidth/2- a.clientWidth/2)+'px';

a.style.top=(document.documentElement.clientHeight/2- a.clientHeight/2)+'px';

22弹出窗口

*{

margin: 0;

padding: 0;

}

div{

margin: 0 auto;

/*border: 1px solid red;*/

}

.overBg{

width: 100%;

height: 100%;

background: gray;

opacity: 0.5;

filter: alpha(opacity=50);

position: fixed;

top:0;

z-index: 300;

}

.tc-con{

width: 200px;

height: 200px;

padding: 30px;

background: blanchedalmond;

position: fixed;

top: 0;

z-index: 1000;

}

$(function(){

$('.tc').hide();

$('.btn').click(function(){

$('.tc').show();

})

$('.tc').click(function(){

$(this).hide();

})

})

点击出现22

var a=document.getElementById('tc-con');

a.style.left=(document.body.clientWidth/2- a.clientWidth/2)+'px';

a.style.top=(document.documentElement.clientHeight/2- a.clientHeight/2)+'px';

22

效果图:

以上就是为大家分享的javascript弹出窗口实现代码,希望对大家的学习有所帮助。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。