3.0.3 • Published 6 months ago

@frankhoodbs/number-animation-cmp v3.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

Number Animation Cmp

Component that creates an animation on a displayed number.

Version License

Props

NameTypeDescription
data-start-valuenumberRequired Starting value of the number.
data-end-valuenumberRequired Ending value of the number.
data-start-animationbooleanBoolean to control the timing of the start of the animation, defaults to true so animation starts immediatly.
data-stepnumberControls the increment on each step of the animation, defaults to 1.
data-durationnumberDefines the duration of the animation (millisecons), defaults to 5000ms

Slots

NamePropsDescription
defaultnumberSlot that autofeeds the number to be printed

Usage/Examples

<div class="container">
    <number-animation-cmp
      :data-duration="10000"
      :data-start-value="0"
      :data-end-value="1000000"
      :data-start-animation="uela"
      :data-step="100"
    >
      <template #default="{ number }">
        {{ number.toFixed(0) }}
      </template>
    </number-animation-cmp>
    <number-animation-cmp
      :data-duration="10000"
      :data-start-value="0.001"
      :data-end-value="1.0"
      :data-step="0.01"
    >
      <template #default="{ number }">
        {{ number.toFixed(2) }}
      </template>
    </number-animation-cmp>
    <number-animation-cmp
      :data-duration="8000"
      :data-start-value="-100000000"
      :data-end-value="1000000"
      :data-step="500000"
    >
      <template #default="{ number }">
        {{ number.toFixed(0) }}
      </template>
    </number-animation-cmp>
  </div>
2.0.3

1 year ago

3.0.3

6 months ago

3.0.2

6 months ago

3.0.1

7 months ago

3.0.0

7 months ago

2.0.2

1 year ago

1.3.12

1 year ago

2.0.1

1 year ago

1.3.11

1 year ago

1.3.10

1 year ago

1.3.9

1 year ago

1.3.7

2 years ago

1.3.4

2 years ago

1.3.8

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.17

2 years ago

1.2.16

2 years ago

1.2.14

2 years ago

1.2.15

2 years ago

1.2.13

2 years ago

1.2.12

2 years ago

1.2.11

2 years ago

1.2.10

2 years ago

1.2.9

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago