Giter Club home page Giter Club logo

Comments (10)

stephane-monnot avatar stephane-monnot commented on May 30, 2024 13

You can add to fix it :

html, body {
  overflow-x:hidden 
} 

from react-vertical-timeline.

jasan-s avatar jasan-s commented on May 30, 2024 8

the following change(commenting out a class) solved the issue:

@media only screen and (max-width: 1169px) {
  /* .vertical-timeline--animate */
.vertical-timeline-element-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}

from react-vertical-timeline.

PKWebAppDev avatar PKWebAppDev commented on May 30, 2024 1

reinstalled the npm package, and commenting the animate class works now.

Thank you everyone and Stephane!

from react-vertical-timeline.

stephane-monnot avatar stephane-monnot commented on May 30, 2024

Thank you, I will check and fix it when I have time.

from react-vertical-timeline.

lakshay17244 avatar lakshay17244 commented on May 30, 2024

@jasan-s Thanks for the input. I had the same issue and commenting out that class worked for me.

from react-vertical-timeline.

sebge-1 avatar sebge-1 commented on May 30, 2024

Thanks @jasan-s - I commented out the animate class and got rid of the janky scroll up effect too.

from react-vertical-timeline.

flicksolutions avatar flicksolutions commented on May 30, 2024

This did not work for me. I did however get the component from npm. Does this matter?
@stephane-monnot Thank you for this wonderful component! I would be happy if you could fix this small bug. The component would be even better after the fix. :)

from react-vertical-timeline.

SergeShkurko avatar SergeShkurko commented on May 30, 2024

Simple smooth animation (slide) for mobile devices with out screen resize

ezgif com-optimize

@media only screen and (max-width: 1169px) {
  .vertical-timeline--animate  .vertical-timeline-element-content.bounce-in {
    visibility: visible;
    animation: timeline-slide 0.6s;
  }
}

@keyframes timeline-slide {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  60% {
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

from react-vertical-timeline.

stephane-monnot avatar stephane-monnot commented on May 30, 2024

Good job. I will use it ;) .Thanks

from react-vertical-timeline.

PKWebAppDev avatar PKWebAppDev commented on May 30, 2024

I can confirm that this still happens with mobile chrome views even after commenting out the animate class.

@flicksolutions

Did you ever find a solution?

from react-vertical-timeline.

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.