1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="skeleton">
- <div class="image"></div>
- <div class="title"></div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- </div>
- </div>
- </template>
- <style lang="less" scoped>
- .skeleton {
- height: 100%;
- background: #fff;
- .image {
- width: 100%;
- height: 240px;
- background: #F7F8FA;
- }
- .title {
- width: 147px;
- height: 20px;
- background: #F7F8FA;
- border-radius: 10px;
- margin-top: 16px;
- margin-left: 14px;
- }
- .bottom {
- margin: 18px 14px 14px 14px;
- display: flex;
- justify-content: space-between;
- .left {
- width: 80px;
- height: 14px;
- background: #F7F8FA;
- border-radius: 10px;
- }
- .right {
- width: 42px;
- height: 14px;
- background: #F7F8FA;
- border-radius: 10px;
- }
- }
- }
- </style>
|