billie-util
Version:
a gatjer of utils to improve develop efficiency
58 lines (53 loc) • 983 B
CSS
/* 图片预览组件 */
.full-img-box {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 200;
background-color: rgba(0, 0, 0, 0.3);
}
.full-img {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border-radius: 4px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
z-index: 200;
transition: all .2s ease;
}
.full-img-tools {
position: absolute;
bottom: 20px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 203;
}
.full-img-tools>i {
float: left;
width: 32px;
height: 32px;
margin: 0 5px;
font-size: 20px;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 32px;
background: #333;
cursor: pointer;
}
.full-img-bg {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
z-index: 200;
}
/* 。/图片预览组件 */