Git Product home page Git Product logo

Comments (4)

thomasbnt avatar thomasbnt commented on June 2, 2024 1

Hello, thanks for your reply @tony1c, I tested your code, but seems not working. Same issue.

However, I edited with v-motion variants, and works :

<template>
<div v-motion :initial="initial" :visibleOnce="enter">
</div>
</template>
<script setup>
const initial = ref({
  x: 10,
  opacity: 0,
  visibility: "hidden",
})

const enter = ref({
  x: 0,
  opacity: 1,
  visibility: "visible",
})
</script>

I reduced to 10px instead of 100px, sometimes bugs are... just stupid 😆🚀

from motion.

tony1c avatar tony1c commented on June 2, 2024

I have the same bug. Did u solve the issue?

from motion.

thomasbnt avatar thomasbnt commented on June 2, 2024

I have the same bug. Did u solve the issue?

Nope, I've got the issue again.

from motion.

tony1c avatar tony1c commented on June 2, 2024

So apparently the bug is caused by the x: 100 (which is translate 100 on the x axis) that is in the preset 'v-motion-slide-visible-once-right'.
I fixed this by specifying the pixels in the directive, for example, like so:
<template><div v-motion :initial="{ opacity: 0, x: "100px" }" :visibleOnce="{ opacity: 1, x: 0 }"</template>
I hope it's useful.

from motion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

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

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.