1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <div
- class="relic-item"
- :class="{needFlip: !isOdd}"
- >
- <div class="curvy-wrap">
- <div
- class="node-point-top"
- />
- <img
- src="@/assets/images/curvy-line.png"
- alt=""
- class="curvy-line"
- >
- <div
- v-if="isLast"
- class="node-point-bottom"
- />
- </div>
- </div>
- </template>
- <script>
- export default {
- props: {
- isOdd: {
- type: Boolean,
- required: true,
- },
- isFirst: {
- type: Boolean,
- default: false,
- },
- isLast: {
- type: Boolean,
- default: false,
- },
- },
- }
- </script>
- <style lang="less" scoped>
- .relic-item {
- width: 100%;
- height: 17rem;
- position: relative;
- .curvy-wrap {
- position: absolute;
- height: 100%;
- left: 50%;
- transform: translateX(-50%);
- .node-point-top {
- position: absolute;
- left: 0;
- top: 0;
- transform: translate(-40%, -50%);
- width: 1.67rem;
- height: 1.67rem;
- border-radius: 50%;
- background-color: #BC945B;
- background-color: red;
- }
- .curvy-line {
- height: 100%;
- }
- .node-point-bottom {
- position: absolute;
- right: 0;
- bottom: 0;
- transform: translate(40%, 50%);
- width: 1.67rem;
- height: 1.67rem;
- border-radius: 50%;
- background-color: #BC945B;
- }
- }
- }
- .needFlip {
- .curvy-wrap {
- transform: translateX(-50%) rotateY(180deg);
- .curvy-line {
- }
- }
- }
- </style>
|