Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1066539

    Hello everybody,

    when scrolling the page, the background images are jittering.
    Page (ballettschule-laskiwitt.de)
    This only happens with Microsoft IE and Edge in Firefox scrolls everything normally?

    I deleted the cache and turned off the plugin WP Rocket.
    I suspected the caching but the problem still exists.

    What could that be?

    Greetings
    IngW

    #1067087

    Hey IngW,

    Do you have any plugin doing the images lazy load? If yes, please disable that too and see if the issue persists.

    Best regards,
    Victoria

    #1067107

    Hello Victoria,

    Thank you for answering me, I can test that tomorrow I’m not at home right now.
    I use the plugins WP Rocket (lazy load turned on) and Smart Slider 3 Pro (lazy load turned off).
    I turn it off and write tomorrow if it works.

    Thanks
    IngW

    #1067446

    Hello Victoria,

    Lazy load on WP Rocket is disabled. I also turned off both plugins.
    Unfortunately, the problem still exists.

    Best regards
    IngW

    #1067791

    Hi IngW,

    Can you disable caching and minification for now?

    Best regards,
    Victoria

    #1067829

    Hello Victoria,

    I switched off caching (Wp Rocket is off)

    Best regards
    IngW

    #1068530

    Hello Victoria,

    I have written this post in german my english is not so good.

    Mr. Basilis answered me and I uploaded a video maybe that helps to understand my problem.

    Thanks,
    IngW

    #1068631

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Basilis

    #1068770

    Hello Basilis,

    I have created an account.

    Thanks,
    IngW

    #1069594

    Hello Basilis,

    I took the freelancer demo as base.
    I’ve found the problem also exists with the demo.
    I uploaded a video, see link.

    Thanks,
    IngW

    #1070988

    Hi,
    Sorry for the late reply, I have taken a look at your page and researched the issue, it seems that this has been a MS issue for a while but I may have found a solution using javascript, only I can’t test it on my localhost due to a different MS issue, so, Please include FTP access in the Private Content area so I can try adding the javascript to your site to see if it helps.

    Best regards,
    Mike

    #1071015

    Hello Mike,

    thank you for your help.
    I have set up a ftp access to content. See private area.

    Best regards,
    IngW

    #1071031

    Hi,
    Thank you for the FTP access, the script in the article was almost correct, but I managed to adjust it so it would work. Please clear your browser cache and check.

    This is what I added to your child theme functions.php:

    //disable smoth scrolling error on edge causing jumpy fixed images
    function disable_smoth_scrolling_error_edge(){
        ?>
        <script>
        (function($){
      $(document).ready(function(){
        if(navigator.userAgent.indexOf("MSIE")) {
            $('body').on("mousewheel", function () {
                // remove default behavior
                event.preventDefault(); 
    
                //scroll without smoothing
                var wheelDelta = event.wheelDelta;
                var currentScrollPosition = window.pageYOffset;
                window.scrollTo(0, currentScrollPosition - wheelDelta);
            });
    } else {
    
    }
    });
    })(jQuery);
      </script>
      <?php
      }
      add_action('wp_footer', 'disable_smoth_scrolling_error_edge');

    Best regards,
    Mike

    #1071385

    Hello Mike,

    I tested it on different machines with Win10 and IE11 and Edge. Everything is fine now no jittering anymore.
    Thank you very much Mike

    Best regards,
    IngW

    #1071644

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Scrolling the page background images jittering in IE and Edge’ is closed to new replies.