Smooth Animation Motion Effects Component Library for Vue

vueuse / motion is a Vue Composable that aims to help you add animations to Vue applications using a simple yet powerful API.

It uses Popmotion, which allows you to pan between numbers, colors, and keyframes. It allows you to write the animation in two ways, from the template or from the script.

How to make use of it:

Install and download:

# Yarn
$ yarn add @vueuse/motion

# NPM
$ npm i @vueuse/motion

In your Vue application input file:

import { createApp } from 'vue'
import { MotionPlugin } from '@vueuse/motion'
import App from './App.vue'

const app = createApp(App)

app.use(MotionPlugin)

app.mount('#app')

You can now animate any of your components, HTML, or SVG elements with v-Motion.

<template>
  <div
    v-motion
    :initial="{
      opacity: 0,
      y: 100,
    }"
    :enter="{
      opacity: 1,
      y: 0,
    }"
  />
</template>

Smooth Motion Effect Library For Vue Plugin/Github, jquery animation library, best javascript animation library


See Demo And Download

Official Website(vueuse): Click Here

This superior jQuery/javascript plugin is developed by vueuse. For extra Advanced Usage, please go to the official website.

Related Posts

swiper-touch-slider

Modern Mobile Touch Slider With Acceleration Transitions | Swiper

Swiper is the most modern free mobile touch slider with accelerated device transitions and amazing original behavior. It is intended for use in mobile websites, mobile web…

Confetti-Falling-Animation-Effect-party

Confetti Falling Animation Effect In JavaScript | party.js

Party.js is a JavaScript library to brighten user site experience with visual effects! Celebrate success with dom confetti! The library is written in TypeScript and compiled into…

Mobile-App-Sliding-Menu-mmenu

Create a Beautiful Mobile App-Like Sliding Menu | mmenu.js

Mmenu is the best JavaScript plugin for both on and off-canvas(hamburger menu) menus with sliding submenus for your website and web app. It is very customizable with…

fireworks-js

Simple Fireworks Animation With JavaScript | fireworks-js

fireworks-js is a JavaScript library that adds configurable fireworks animations with sound effects to your webpage. Features Must Read: A Vue Hook Composable For Playing Sound Effects…

Skeleton-Screen-Loading-In-Pure-CSS

How to Create a Skeleton Screen Loading In Pure CSS

Skeleton Screen CSS is a complete set of elements for a hierarchical screen consisting of pure CSS. The source includes scss and compiled thumbnail and non-thumbnail CSS…

JS-Cloudimage-360-View

How to Create a 360 Product View Using JavaScript | JS Cloudimage

Cloud Image 360 View is a simple, interactive resource that can be used to provide a virtual tour of your product. Attract your customers with a stunning…

Leave a Reply

Your email address will not be published. Required fields are marked *