22 lines
313 B
Plaintext
22 lines
313 B
Plaintext
.container{
|
|
height: 1100rpx;
|
|
/* border: 1rpx solid #ccc; */
|
|
}
|
|
|
|
.image{
|
|
width: 100%;
|
|
height: 90%;
|
|
border-radius: 15rpx;
|
|
}
|
|
|
|
/* 当前图片 */
|
|
image.active{
|
|
transform: none;
|
|
transition: all .2s ease-in;
|
|
}
|
|
|
|
/* 不是当前图片 */
|
|
image.quiet{
|
|
transform: scale(0.9);
|
|
transition: all .2s ease-in;
|
|
} |