How to use @pluginjs/animate-text - 10 common examples

To help you get started, we’ve selected a few @pluginjs/animate-text examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github pluginjs / pluginjs / modules / animate-text / samples / src / sections / fade-up / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#fade-up .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / bounce / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#bounce .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / switch-fade / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#switch-fade .animate-text')
AnimateText.of(element, {
  /** options **/
  alt: ['beautiful flowers', 'crispy cookies', 'everying you wish']
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / fade-down / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#fade-down .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / zoom / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#zoom .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / char-fade / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#char-fade .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / switch-rotate / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#switch-rotate .animate-text')
AnimateText.of(element, {
  /** options **/
  alt: ['beautiful flowers', 'crispy cookies', 'everying you wish']
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / char-fade-down / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#char-fade-down .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / swing / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#swing .animate-text')
AnimateText.of(element, {
  /** options **/
})
github pluginjs / pluginjs / modules / animate-text / samples / src / sections / switch-slider / index.js View on Github external
import { query } from '@pluginjs/dom'
import AnimateText from '@pluginjs/animate-text'

const element = query('#switch-slider .animate-text')
AnimateText.of(element, {
  /** options **/
  alt: ['beautiful flowers', 'crispy cookies', 'everying you wish']
})

@pluginjs/animate-text

A flexible modern animate-text js plugin.

GPL-3.0
Latest version published 2 years ago

Package Health Score

46 / 100
Full package analysis

Popular @pluginjs/animate-text functions

Similar packages