zsongs

css3 弹框提示样式

.common-dialog-box{
	opacity: 0;
	filter: alpha(opacity=0);
	position: fixed;
	top: 0%;
	left: 50%;
	z-index: 1000;
	width: 500px;
	height: 50px;
	line-height: 50px;
	margin-left: -250px;
	border-radius: 3px;
	background-color: #fff;
	overflow: hidden;
	visibility: hidden;
	transition: all 0.5s;
	-ms-transition: all 0.5s;
}
.common-dialog-box.show{
	visibility: visiblel;
	opacity: 0.7;
	filter: alpha(opacity=70);
	top: 1%;
}
.common-dialog-box .common-dialog-body{
	color: #fff;
	text-align: left;
}

  

发表于 2016-10-26 17:14  LiuYier  阅读(1685)  评论(0编辑  收藏  举报
 

分类:

技术点:

相关文章:

  • 2021-10-20
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2021-09-27
  • 2021-06-20
  • 2020-05-23
猜你喜欢
  • 2022-01-01
  • 2021-12-05
  • 2022-03-06
  • 2021-05-21
  • 2021-12-04
  • 2022-12-23
相关资源
相似解决方案