Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

animate-uri

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

animate-uri

Animate your url transitions for that extra flair

latest
Source
npmnpm
Version
1.4.0
Version published
Maintainers
1
Created
Source

Animate URI

Animate your url transitions for that extra flair.

Inspire by Neal Agarwal

Look at demo

Usage

First,

yarn add animate-uri

Then

import { animateUriFactory, bindAllLink } from 'animate-uri'

animateUriFactory({ duration: 60, shouldPushState: false }).start(
  '/hello-world',
  '/',
)

Or you can bind all link(should in a tag href)

const instance = bindAllLink() // return a instance
// do anything...

More fun ways to use, you can change text after once finished animate, and again.

instance
  ?.start('/hey,这里是Tomon~。谢谢你能来看我~')
  .then((i) => i?.start('/類は友を呼ぶ,独特的人会找到独特的人'))
  .then((i) => i.start('/'))

Used in Next.js

You can use this into your next.js application. In the _app.tsx, add event listener on router change.

import { animateUriFactory } from 'animate-uri/publish/index.esm'
const animateInstance = animateUriFactory()

// componentDidMount(): void {
Router.events.on('routeChangeStart', (url) => {
  animateInstance?.start(url)
})

Router.events.on('routeChangeComplete', () => {
  animateInstance?.stop()
})

// }

That's all. Enjoy.

Keywords

animate

FAQs

Package last updated on 23 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts