Code Monkey home page Code Monkey logo

Comments (3)

iTarek avatar iTarek commented on July 16, 2024

Hello, Do you have time to fix this issue?

from viewanimator.

marcosgriselli avatar marcosgriselli commented on July 16, 2024

@iTarek I added a comment on the PR a couple of days ago:

@iTarek after some review I believe the functionality is working as expected. I agree the API is a bit confusing but I'm testing >the example project and running this code:
let animation = AnimationType.vector(CGVector(dx: 0, dy: 30))
activityIndicator.animate(animations: [animation], reversed: true, initialAlpha: 1, finalAlpha: 0)
will effectively animate the view by moving it from its current position 30 points to the bottom. Can you maybe replicate the issue you're having on a PR or demo project?

from viewanimator.

iTarek avatar iTarek commented on July 16, 2024

Ok now I understand what cause the problem...
Try to add icon in the middle of the screen
Add this animation

let animZoom = AnimationType.zoom(scale: 2.0)
loadingViewIcon.animate(animations: [animZoom], reversed: true, initialAlpha: 1, finalAlpha: 1, duration: 30.0)

Then after the app load I add this animation to make the icon fall down

let animMove = AnimationType.vector(CGVector(dx: 0, dy: self.view.height/2))
loadingViewIcon.animate(animations: [animMove], reversed: true, initialAlpha: 1, finalAlpha: 1, duration: 0.2)

Before the last update they both was working good with each other, but now they don't.
While the first animation still running the secound animation jump on the top of the screen

from viewanimator.

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.