Layout

like Motion React, you can use layout prop to enable layout animations.

Animate Flex

<script setup lang="ts">
import { ref } from 'vue'
import { Motion } from 'motion-v'

const isOn = ref(false)

function toggleSwitch() {
  isOn.value = !isOn.value
}
</script>

<template>
  <div class="app h-full w-full py-8 rounded-lg">
    <Motion
      :layout="true"
      class="switch"
      :data-on="isOn"
      @click="toggleSwitch"
    >
      <Motion
        class="handle"
        :data-on="isOn"
        :layout="true"
        :transition="{
          type: 'spring',
          stiffness: 500,
          damping: 30,
        }"
      />
    </Motion>
  </div>
</template>

<style>
.app {
  background: linear-gradient(250deg, #7b2ff7, #f107a3);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.App {
  font-family: sans-serif;
  text-align: center;
}

.switch {
  width: 160px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: flex-start;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
}

.switch[data-on="true"] {
  justify-content: flex-end;
}

  .handle {
    width: 80px;
    height: 80px;
    background-color: white;
  border-radius: 40px;
}
</style>

Shared layout

🍅
<script setup lang="ts">
import { ref } from 'vue'
import { initialTabs as tabs } from './ingredients'
import { AnimatePresence, Motion } from 'motion-v'

const selectedTab = ref(tabs[0])
</script>

<template>
  <div class="flex justify-center items-center">
    <div class="window">
      <nav>
        <ul>
          <li
            v-for="item in tabs"
            :key="item.label"
            :class="{ selected: item === selectedTab }"
            @click="selectedTab = item"
          >
            {{ item.icon }} {{ item.label }}
            <Motion
              v-if="item.label === selectedTab.label"
              class="underline"
              layout-id="underline"
            />
          </li>
        </ul>
      </nav>
      <main>
        <AnimatePresence mode="wait">
          <Motion
            :key="selectedTab ? selectedTab.label : 'empty'"
            :initial="{ y: 10, opacity: 0 }"
            :animate="{ y: 0, opacity: 1 }"
            :exit="{ y: -10, opacity: 0 }"
            :transition="{ duration: 0.2 }"
          >
            {{ selectedTab ? selectedTab.icon : '😋' }}
          </Motion>
        </AnimatePresence>
      </main>
    </div>
  </div>
</template>

<style scoped>
.window {
  width: 480px;
  height: 360px;
  max-width: 320px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
  box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
  display: flex;
  flex-direction: column;
}

nav {
  background: #fdfdfd;
  padding: 5px 5px 0;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #eeeeee;
  height: 44px;
}

.tabs {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: nowrap;
  width: 100%;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 128px;
  flex-grow: 1;
  user-select: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

ul {
  display: flex;
  width: 100%;
}

li {
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  padding: 10px 15px;
  position: relative;
  background: white;
  cursor: pointer;
  height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  min-width: 0;
  position: relative;
  user-select: none;
}

.underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background: red;
}

li.selected {
  background: #eee;
}

li button {
  width: 20px;
  height: 20px;
  border: 0;
  background: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  stroke: #000;
  margin-left: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
}

.add-item {
  width: 30px;
  height: 30px;
  background: #eee;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  align-self: center;
}

.add-item:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
</style>

Resources