2.0.2 • Published 10 months ago

@frankhoodbs/number-animation-cmp-gsap v2.0.2

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

Number Animation Gsap Cmp

Component that creates an animation on a displayed number using gsap.

Version License

Libraries Docs for config

Gsap from properties: https://gsap.com/docs/v3/GSAP/gsap.from()#special-properties

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 (seconds), defaults to 5s
data-easestringDefines the easing of the animation using gsap's easing options, defaults to 'none'

Slots

NamePropsDescription
defaultnumberSlot that autofeeds the number to be printed

Usage/Examples

<div class="container">
    <number-animation-cmp-gsap
      :data-duration="8"
      :data-step="1"
      data-ease="power1.in"
      :data-start-value="0"
      :data-end-value="100000000"
    >
      <template #default="{ number }">€ {{ number.toFixed(2) }}</template>
    </number-animation-cmp-gsap>
    <number-animation-cmp-gsap
      :data-duration="10"
      :data-step="0.01"
      data-ease="power1.in"
      :data-start-value="0.0"
      :data-start-animation="uela"
      :data-end-value="100.0"
    >
      <template #default="{ number }">{{ number }} Kb</template>
    </number-animation-cmp-gsap>
  </div>
2.0.2

10 months ago

2.0.1

10 months ago

1.2.12

10 months ago

1.2.11

10 months ago

1.2.9

1 year ago

1.2.10

1 year ago

1.2.8

1 year ago

1.2.7

1 year ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.2.0

1 year ago

1.1.17

1 year ago

1.1.16

1 year ago

1.1.15

1 year ago

1.1.14

1 year ago

1.1.13

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.1

2 years ago

1.1.3

2 years ago

1.1.2

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