Convert Figma logo to code with AI

motiondivision logomotion-vue

Motion for Vue

1,650
40
1,650
12

Top Related Projects

208,514

This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core

49,348

🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

56,554

The Intuitive Vue Framework.

26,384

Quasar Framework - Build high-performance VueJS user interfaces in record time

40,356

🐉 Vue Component Framework

A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.

Quick Overview

Motion Vue is a Vue 3 component library that provides smooth and customizable animations for Vue applications. It offers a set of pre-built components and directives to easily add motion and transitions to elements, enhancing the user experience with minimal effort.

Pros

  • Easy integration with Vue 3 projects
  • Customizable animations with a wide range of options
  • Lightweight and performant
  • Well-documented with examples and API references

Cons

  • Limited compatibility with older Vue versions
  • May require additional learning for developers unfamiliar with animation concepts
  • Some advanced animations might need custom JavaScript implementations

Code Examples

  1. Basic fade transition:
<template>
  <Motion>
    <div v-if="isVisible">Hello, Motion Vue!</div>
  </Motion>
</template>

<script setup>
import { ref } from 'vue'
import { Motion } from '@motionone/vue'

const isVisible = ref(true)
</script>
  1. Custom animation with props:
<template>
  <Motion
    :initial="{ opacity: 0, y: 50 }"
    :animate="{ opacity: 1, y: 0 }"
    :transition="{ duration: 0.5, ease: 'easeOut' }"
  >
    <h1>Animated Heading</h1>
  </Motion>
</template>

<script setup>
import { Motion } from '@motionone/vue'
</script>
  1. Using the v-motion directive:
<template>
  <div
    v-motion
    :initial="{ scale: 0 }"
    :enter="{ scale: 1 }"
    :hover="{ scale: 1.1 }"
  >
    Hover me!
  </div>
</template>

<script setup>
import { vMotion } from '@motionone/vue'
</script>

Getting Started

  1. Install Motion Vue in your Vue 3 project:

    npm install @motionone/vue
    
  2. Import and use Motion components in your Vue files:

    <script setup>
    import { Motion } from '@motionone/vue'
    </script>
    
    <template>
      <Motion :initial="{ opacity: 0 }" :animate="{ opacity: 1 }">
        <p>This text will fade in</p>
      </Motion>
    </template>
    
  3. For global registration, add the following to your main.js:

    import { MotionPlugin } from '@motionone/vue'
    
    const app = createApp(App)
    app.use(MotionPlugin)
    app.mount('#app')
    

Competitor Comparisons

208,514

This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core

Pros of Vue

  • Mature, widely-adopted framework with extensive ecosystem
  • Comprehensive documentation and large community support
  • Flexible and scalable for both small and large applications

Cons of Vue

  • Steeper learning curve for beginners
  • Larger bundle size compared to Motion Vue
  • More complex setup and configuration for advanced features

Code Comparison

Vue:

<template>
  <div>{{ message }}</div>
</template>

<script>
export default {
  data() {
    return {
      message: 'Hello Vue!'
    }
  }
}
</script>

Motion Vue:

<template>
  <div v-motion>{{ message }}</div>
</template>

<script setup>
import { ref } from 'vue'

const message = ref('Hello Motion Vue!')
</script>

Motion Vue is a lightweight animation library built on top of Vue, focusing specifically on motion and transitions. It offers a simpler API for animations compared to Vue's native transition system. While Vue provides a complete framework for building web applications, Motion Vue specializes in enhancing Vue projects with easy-to-implement animations.

Vue is better suited for full-scale applications, offering more features and flexibility. Motion Vue, on the other hand, excels in quickly adding smooth animations to existing Vue projects without the need for complex setups or additional dependencies.

49,348

🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

Pros of Vue Core

  • Larger community and ecosystem, with more resources and third-party libraries
  • More comprehensive documentation and official learning materials
  • Broader scope, covering the entire Vue.js framework

Cons of Vue Core

  • Steeper learning curve for beginners due to its extensive feature set
  • Potentially more complex setup for simple projects
  • Larger bundle size, which may impact performance for smaller applications

Code Comparison

Vue Core (Composition API):

import { ref, computed } from 'vue'

export default {
  setup() {
    const count = ref(0)
    const doubleCount = computed(() => count.value * 2)
    return { count, doubleCount }
  }
}

Motion Vue:

import { useMotion } from '@motion/vue'

export default {
  setup() {
    const boxRef = ref(null)
    const { scale } = useMotion(boxRef)
    return { boxRef, scale }
  }
}

Motion Vue focuses specifically on animation and motion, providing a simpler API for these tasks. Vue Core, being the framework's core, offers a more comprehensive set of features for building entire applications. The code comparison shows how Motion Vue simplifies motion-related tasks, while Vue Core provides a broader range of reactive programming capabilities.

56,554

The Intuitive Vue Framework.

Pros of Nuxt

  • More comprehensive framework with built-in server-side rendering and static site generation
  • Larger ecosystem and community support, with extensive documentation and plugins
  • Automatic code splitting and optimized performance out of the box

Cons of Nuxt

  • Steeper learning curve due to its full-featured nature
  • Potentially heavier bundle size for smaller projects
  • More opinionated structure, which may limit flexibility in some cases

Code Comparison

Motion Vue:

<template>
  <motion :initial="{ opacity: 0 }" :animate="{ opacity: 1 }">
    <h1>Hello, Motion Vue!</h1>
  </motion>
</template>

Nuxt:

<template>
  <div>
    <h1>Welcome to Nuxt!</h1>
    <NuxtLink to="/about">About</NuxtLink>
  </div>
</template>

The Motion Vue example showcases its focus on animations, while the Nuxt example demonstrates its built-in routing capabilities. Nuxt provides a more comprehensive framework for building full-fledged applications, whereas Motion Vue is specifically designed for adding motion and animations to Vue projects. The choice between the two depends on the project requirements and the developer's preference for a specialized animation library versus a full-featured web application framework.

26,384

Quasar Framework - Build high-performance VueJS user interfaces in record time

Pros of Quasar

  • Comprehensive UI framework with a large set of pre-built components
  • Strong community support and extensive documentation
  • Cross-platform development capabilities (web, mobile, desktop)

Cons of Quasar

  • Steeper learning curve due to its extensive feature set
  • Larger bundle size, which may impact initial load times
  • More opinionated structure, potentially limiting flexibility

Code Comparison

Motion Vue:

<template>
  <motion :initial="{ opacity: 0 }" :animate="{ opacity: 1 }">
    <h1>Hello, Motion Vue!</h1>
  </motion>
</template>

Quasar:

<template>
  <q-page>
    <q-btn color="primary" label="Click me" @click="animate" />
    <div ref="animatedElement">Hello, Quasar!</div>
  </q-page>
</template>

<script>
export default {
  methods: {
    animate() {
      this.$q.animationFrame.request(() => {
        this.$refs.animatedElement.style.opacity = 1
      })
    }
  }
}
</script>

Motion Vue focuses on simple, declarative animations within Vue components, while Quasar provides a more comprehensive framework with built-in components and utilities for creating complex UIs and animations across multiple platforms.

40,356

🐉 Vue Component Framework

Pros of Vuetify

  • Comprehensive UI component library with a wide range of pre-built components
  • Extensive documentation and active community support
  • Material Design compliance out of the box

Cons of Vuetify

  • Larger bundle size due to the extensive component library
  • Steeper learning curve for customization and overriding default styles
  • Opinionated design system may limit flexibility for unique designs

Code Comparison

Motion-vue example:

<template>
  <motion-div :initial="{ opacity: 0 }" :animate="{ opacity: 1 }">
    Hello, Motion!
  </motion-div>
</template>

Vuetify example:

<template>
  <v-fade-transition>
    <v-card>
      Hello, Vuetify!
    </v-card>
  </v-fade-transition>
</template>

Motion-vue focuses on providing simple, declarative animation components, while Vuetify offers a complete UI framework with built-in transition components. Motion-vue allows for more granular control over animations, whereas Vuetify provides pre-defined transitions that align with Material Design principles.

Both libraries serve different purposes: Motion-vue is specifically for animations, while Vuetify is a comprehensive UI framework. The choice between them depends on project requirements, design preferences, and the level of animation control needed.

A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.

Pros of Ionic Framework

  • Mature, well-established framework with a large community and extensive documentation
  • Supports multiple platforms (iOS, Android, web) with a single codebase
  • Offers a rich set of pre-built UI components and native device integrations

Cons of Ionic Framework

  • Steeper learning curve due to its comprehensive nature and Angular integration
  • Larger bundle size, which may impact performance on low-end devices
  • More opinionated architecture, potentially limiting flexibility for custom designs

Code Comparison

Motion Vue:

<template>
  <motion :initial="{ opacity: 0 }" :animate="{ opacity: 1 }">
    <h1>Hello, Motion Vue!</h1>
  </motion>
</template>

Ionic Framework:

<ion-content>
  <ion-card>
    <ion-card-header>
      <ion-card-title>Hello, Ionic!</ion-card-title>
    </ion-card-header>
  </ion-card>
</ion-content>

Motion Vue focuses on simple, declarative animations within Vue components, while Ionic Framework provides a comprehensive set of UI components and native integrations for building cross-platform applications. Motion Vue is lighter and more flexible, making it suitable for adding animations to existing Vue projects. Ionic Framework, on the other hand, offers a complete solution for building mobile and web apps with a consistent look and feel across platforms.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Motion logo

Motion for Vue





Motion for Vue is an open source, production-ready library that’s designed for all creative developers.

It's the only animation library with a hybrid engine, combining the power of JavaScript animations with the performance of native browser APIs.

It looks like this:

<motion.div :animate="{ x: 100 }" />

It does all this:

  • Springs
  • Keyframes
  • Layout animations
  • Shared layout animations
  • Gestures (drag/tap/hover)
  • Scroll animations
  • SVG paths
  • Exit animations
  • Server-side rendering
  • Independent transforms
  • Orchestrate animations across components
  • CSS variables

...and a whole lot more.

Get started

🐇 Quick start

Install motion-v via your package manager:

npm install motion-v

Then import the motion component:

<script setup>
import { motion } from "motion-v";
</script>

<template>
  <motion.div :animate="{ x: 100 }" />
</template>

💎 Contribute

👩🏻‍⚖️ License

  • Motion for Vue is MIT licensed.

✨ Sponsors

Motion is sustainable thanks to the kind support of its sponsors.

Partners

Framer

Motion powers Framer animations, the web builder for creative pros. Design and ship your dream site. Zero code, maximum speed.

Framer

Platinum

Syntax.fm Tailwind Emil Kowalski Linear

Gold

Vercel Liveblocks Luma

Silver

Frontend.fyi Statamic Firecrawl Puzzmo Build UI Hover

NPM DownloadsLast 30 Days