You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
455 B
18 lines
455 B
/* 图片放大start */
|
|
.shadow {
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
.zoom {
|
|
transition: transform ease-in-out 0.5s;
|
|
cursor: zoom-in;
|
|
}
|
|
|
|
.image-zoom-large {
|
|
transform: scale(1.9);
|
|
cursor: zoom-out;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
z-index: 100;
|
|
position: relative;
|
|
}
|
|
/* 图片放大end https://shafish.cn/blog/mkdocs/#%E5%9B%9B%E9%83%A8%E7%BD%B2*/
|
|
|