123456789101112131415161718192021222324252627282930313233 |
- uni-image {
- width: 320px;
- height: 240px;
- display: inline-block;
- overflow: hidden;
- position: relative;
- }
- uni-image[hidden] {
- display: none;
- }
- uni-image > div {
- width: 100%;
- height: 100%;
- background-repeat:no-repeat;
- }
- uni-image > img {
- -webkit-touch-callout: none;
- user-select: none;
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0;
- }
- uni-image > .uni-image-will-change {
- will-change: transform;
- }
|