手机端dialog几秒钟后消失

css:

.dialog {

display:none; 

position:fixed;

top:50%;

left:50%;

width:5rem;

height:1rem;

        margin-left:-2.5rem;

        margin-top:.5rem;

line-height:1rem;

color:#FFF;

background:rgba(0,0,0,.5);

z-index:1000000000;

text-align:center;

font-size:.3rem;

}



Html:

<div class="dialog"></div>


js:

function dialog(obj){

$(".dialog").html();

$(".dialog").show();

$(".dialog").html(obj);

setTimeout(function(){

$(".dialog").hide();

},2000);


}



猜你喜欢

转载自blog.csdn.net/wisdomLee_CN/article/details/79989601