[ADDED: TEXT TYPE ANIMATION]

This commit is contained in:
Purshottam Jain
2025-07-21 12:56:16 +05:30
parent 6f7b18429b
commit d3187f71c7
5 changed files with 417 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
import code from '@/content/TextAnimations/TextType/TextType.vue?raw';
import { createCodeObject } from '@/types/code';
export const textType = createCodeObject(code, 'TextAnimations/TextType', {
installation: `npm install gsap`,
usage: `<template>
<TextType
:text="['Text typing effect', 'for your websites', 'Happy coding!']"
:typingSpeed="75"
:pauseDuration="1500"
:showCursor="true"
cursorCharacter="|"
/>
</template>
<script setup lang="ts">
import TextType from "./TextType.vue";
</script>`
});