123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .home-skeleton {
- position: fixed;
- background: white;
- height: 100%;
- height: 100%;
- z-index: 1000000000000;
- }
- .home-skeleton.hidden {
- z-index: 0;
- }
- .home-page {
- position: relative;
- z-index: 1;
- }
- .home-skeleton view{
- margin: 20rpx;
- background: #eeeeee;
- /* position: absolute; */
- border-radius: 8rpx;
- animation-duration: 2s;
- animation-name: shine;
- animation-iteration-count: infinite;
- }
- @keyframes shine {
- 0% {
- opacity: .4;
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: .4;
- }
- }
- .home-skeleton-swiper {
- height: 150px;
- }
- .home-skeleton-magic {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .home-skeleton .home-skeleton-magic {
- background: transparent;
- }
- .home-skeleton-magic .jgc {
- width: 100rpx;
- height: 100rpx;
- flex-wrap: wrap;
- }
- .home-skeleton-img {
- height: 100rpx;
- }
- .home-skeleton-magic .hd {
- flex: 1;
- height: 140rpx;
- margin: 0;
- }
- .home-skeleton-magic .hd:first-child {
- margin-right: 20rpx;
- }
|