Sign in

简柏林 / thingskit-view · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-view
  • ..
  • components
  • components
  • Circle.vue
  • fix(src/views/chart):修复当历史数据折线图开启动画效果时,数据显示为10条数据,但是只执行动效到第七条又返回从第一条开始执行了
    303d9e5d
    fengtao authored
    2024-01-26 01:23:23 +0000  
    Browse Files »
Circle.vue 311 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template>
  <div class="smallcircle2"></div>
</template>

<script setup lang="ts"></script>

<style lang="scss" scoped>
.smallcircle2 {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.4;
  background: radial-gradient(circle at center, red 0, blue, #2277b2 100%);
}
</style>