Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • #636335

    Content blocks below Google map feature are animating multiple times upon page load in latest version of Firefox 46.0.1 (Windows 7). Columns have the animation feature assigned.

    A fix available?

    #636582

    Hey fusion01,

    Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.

    Thanks,
    Rikard

    #636605

    Hi Rikard, thanks. I just deactivated ALL plug-ins – including any that cache on the server, browser etc and also cleared my browsers’ too – yet problem still persists. I’ve also done zero custom mods to core files, only ‘custom.css’.

    Appreciate you looking into it for me!

    #637239

    Hi,

    I can’t reproduce the error on my end using OSX/Firefox developer (48) but I’ve asked the rest of the team to take a look as well. Please wait for their answers.

    Thanks,
    Rikard

    #640182

    Anyone??? These animations will repeat as much as 3 times on page load. My client also uses Firefox and it’s visible there, somewhat embarrassing! I have managed to avoid the repeats with a simple fade only – is that what I’m limited to if I keep producing web sites in Enfold?

    #640671

    Hi,

    We can’t reproduce the issue on our own installations. Anyway, please try this in the Quick CSS field:

    .avia_transform .avia_start_delayed_animation.left-to-right {
        -webkit-animation: avia-ltr .8s 1 cubic-bezier(0.175,.885,.32,1.275) 0s;
        animation: avia-ltr .8s 1 cubic-bezier(0.175,.885,.32,1.275) 0s;
        opacity: 1;
    }
    
    .avia_transform .avia_start_delayed_animation.bottom-to-top {
        -webkit-animation: avia-btt .8s 1 cubic-bezier(0.165,.84,.44,1) 0s;
        animation: avia-btt .8s 1 cubic-bezier(0.165,.84,.44,1) 0s;
        opacity: 1;
    }
    
    .avia_transform .avia_start_delayed_animation.right-to-left {
        -webkit-animation: avia-rtl .8s 1 cubic-bezier(0.175,.885,.32,1.275) 0s;
        animation: avia-rtl .8s 1 cubic-bezier(0.175,.885,.32,1.275) 0s;
        opacity: 1;
    }

    Remove browser cache or hard refresh the page. Please let us know about the results.

    Best regards,
    Ismael

    #641633

    Thanks for this, however makes no difference and frankly I don’t see how it could – it’s not down to stipulating the variables but rather how these variables are being executed by the browser. Basically it’s down to some sort of initialisation which then loops unneccessarily.

    I’m not understanding how you can’t replicate it. Any up-to-date version of Firefox on PC @ that page link provided will display the bug within one or two loads. I’ve seen it on first load both at my PC and on my client’s.

    #642403

    Hi,

    We actually reported the issue to Kriesi but he can’t reproduce the issue himself. However, he can see the issue on the page that you provided. According to the forums, adding the animation-delay property should fix the issue. Sadly, it didn’t work. Anyway, the login credentials you provided above are not working. Also, including the FTP details here will help.

    Best regards,
    Ismael

    #643364

    Thanks Ismael, I’ll provide below. I’ll reiterate that I disabled all plug-ins for avoidance of potential conflict issues yet it made no difference. And the bug fix code is still within the child theme’s style.css file.

    #643796

    Hi,

    We found a fix and added it in the style.css file:

    .avia_transform .avia_start_delayed_animation {
         -webkit-animation-fill-mode: forwards; 
         animation-fill-mode: forwards;
    }

    Best regards,
    Ismael

    #643868

    Thanks.
    I just tested the page and the animation of those 3 content boxes looped 3 times. I see no fix. Latest version of FF / PC / Win7.

    #644506

    Hi,

    Did you hard refresh the page or remove the browse cache before checking it? I checked the page again today and the columns do not animate multiple times any more.

    Best regards,
    Ismael

    #644761

    Yup, I went into FF’s settings and deleted the entire cache, all offline. Options > advanced > network > offline web content + cached web content
    What happens is the 3 boxes animate in, then the map appears and then the boxes animate again. I can trigger the outcome easily on my side. This doesn’t happen on the common fade type animation, but all others involving physical x,y co-ord movement will display the bug.

    #645396

    Hi,

    We confirmed that previous css code didn’t actually fixed the issue. We have reported the issue to Kriesi and we’ll let you know once we found a fix. For now, you can either disable the animation or leave as it is.

    Best regards,
    Ismael

    #757136

    Same here Enfold v4

    Any news about this issue?

    Thank you, Gerhard

    EDIT: This only happens by column-setting: Equal Height. If set to Individual Height, everything’s ok.

    • This reply was modified 7 years, 8 months ago by scherar.
    #759911

    Hey!


    @scherar
    : Which section has this issue? I checked the columns but I can’t see any repeated animations. And what is the version of the theme?

    Regards,
    Ismael

    #759945

    i fixed it by setting to individual height.
    there’s a test-site, i changed it for you:
    last section. “Save the Date”

    Child-Theme of Enfold 4.0.2

    tell me, when i can set it offline… :) thks

    #760400

    Hey!

    Thank you for the update.

    I was able to reproduce the issue. Have you tried adding the css fix above?

    // https://kriesi.at/support/topic/repeated-animated-columns-bug-in-firefox/#post-640671

    As of now, we haven’t come up with an actual fix because the issue is quite intermittent. And we can’t find anything unusual on installations where the issue manifests.

    Regards,
    Ismael

    #760516

    Hi Ismael, i applied the css code, but it doesn’t work.
    only “Fix” is setting the rows to individual height.

    #761196

    Hi!

    We’ll report this again to Kriesi. I’m sure he’ll be able to fix this now since it’s only happening if a certain option is enabled. For now, please disable the animation temporarily. Or add this the following css code in the Quick CSS field to disable the column animation on firefox.

    .avia-mozilla.avia_transform .avia_start_delayed_animation.right-to-left {
        -webkit-animation: none !important;
        animation: none !important;
    }

    Thank you for the info.

    Cheers!
    Ismael

    #769825

    I might be able to shed some light on this – at least in my case.

    Set the CELL to animate
    Add an ICON into that cell

    ENFOLD automatically animates the icon: class=”av_font_icon avia_animate_when_visible av-icon-style-border margin-bottom-30 avia-icon-pos-center avia_start_animation avia_start_delayed_animation

    There is now in effect a doubled-up animation, creating the visual glitch. Solution would be to allow for all elements to either animate or not, on an individual basis. In this case disable the icon animation and allow for the cell only.

    #770846

    Hey!

    Thank you for the update. I didn’t notice a correlation between the issue and the icon elements but we’ll forward this information to Kriesi.

    Regards,
    Ismael

Viewing 22 posts - 1 through 22 (of 22 total)
  • You must be logged in to reply to this topic.