吉光研途前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
890 B

  1. <template>
  2. <view class="arrow">
  3. <view class="arrow-blank arrow-blank-top"></view>
  4. <view class="arrow-blank arrow-blank-bottom"></view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. }
  10. </script>
  11. <style scoped lang="scss">
  12. .arrow {
  13. position: relative;
  14. width: 28rpx;
  15. height: 32rpx;
  16. background-image: linear-gradient(to right, #A3BCEF, #4883F9);
  17. &-blank {
  18. position: absolute;
  19. right: 0;
  20. &-top {
  21. top: 0;
  22. border-top: 9rpx solid #FFFFFF;
  23. border-right: 15rpx solid #FFFFFF;
  24. border-bottom: 9rpx solid transparent;
  25. border-left: 15rpx solid transparent;
  26. }
  27. &-bottom {
  28. bottom: 0;
  29. border-top: 9rpx solid transparent;
  30. border-right: 15rpx solid #FFFFFF;
  31. border-bottom: 9rpx solid #FFFFFF;
  32. border-left: 15rpx solid transparent;
  33. }
  34. }
  35. }
  36. </style>