赞
踩
实现思路:
- <template>
- <view class="pages">
- <view class="clip1" />
- <view class="clip2" />
- <view class="pageChild">
- <view class="header"/>
- <view class="line">
- <u-line dashed color="#fff" direction="row" length="96%" />
- </view>
- <view class="body"/>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {};
- },
- methods: {},
- };
- </script>
-
- <style scoped lang="scss">
- .pages {
- width: 95vw;
- position: relative;
-
- .clip1 {
- width: 100%;
- height: 100%;
- background-color: #fff;
- position: absolute;
- clip-path: ellipse(2% 6% at 0% 38%);
- }
-
- .clip2 {
- width: 100%;
- height: 100%;
- background-color: #fff;
- position: absolute;
- clip-path: ellipse(2% 6% at 100% 38%);
- }
-
- .pageChild {
- background-color: rgba($color: #ff0000, $alpha: 0.6);
- border-radius: 10rpx;
-
- .header {
- height: 85rpx;
- display: flex;
- justify-content:flex-start;
- align-items: center;
- }
-
- .line {
- display: flex;
- justify-content:center;
- align-items: center;
- }
-
- .body {
- height: 137rpx;
- display: flex;
- flex-direction: row;
- flex-wrap:wrap;
- }
- }
- }
- </style>

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。