• Resolved Daniel Chan

    (@danielchan)


    Hi again,

    just found out that the Fade-In effect doesn’t work. All other effects seems fine, except this one. And this is the one I want to use. Can you have a look please why it just displays the tooltip immediately without fade-in? Thanks.

    Daniel

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jamel.Z

    (@lebleut)

    Hi @danielchan,

    Please check my site it’s working : https://www.tooltipy.com

    Thread Starter Daniel Chan

    (@danielchan)

    Hello,

    no idea why it’s not working. I tried to remove all my CSS, too. The funny thing is only the fadein effect doesn’t work. All other effects are working!

    Anyhow I solved this issue by copy and paste this part into my own CSS file:

    /* BUGFIX  [Fade In]  */
    @-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}}
    @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}}
    .fadeIn {-webkit-animation-name: fadeIn;
    animation-name: fadeIn;}
    @-webkit-keyframes fadeInDown {
    0% {opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);}
    100% {opacity: 1;
    -webkit-transform: none;
    transform: none;}}
    Plugin Author Jamel.Z

    (@lebleut)

    Hey @danielchan,

    I guess it could be a plugins conflict, anyways thanks so much for getting back here with your custom workaround for the issue.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Only Fade-In Effect Broken’ is closed to new replies.