Flickering SVG animation on Safari











up vote
0
down vote

favorite












I'm using Lottie Web - js plugin to animate a SVG path. All works fine except in Safari, where the SVG is flickering up and down, like this screenshot below:



Image of Yaktocat



I noticed that the problem occurs when I move the mouse near the SVG or when I resize the browser windows on Safari desktop, while, in a mobile enviroment, when I change page and return to the index.



I've a mousemove event applied on body tag. I'm using pjax to change the page (swup.js). I'm using translate3d in css to animate the component when entered in a page. There is no error shown in chrome/safari console. I've already tried to remove the further script or transformations on the svg, but the problem is still there.



I cannot understand what could be the problem. Please visit andreabalbo.com on Safari to test it out. The original file is here lottie file.



Here some code:






function init_home() {

//lottie home me at office
if( $("#home-isometric").length != 0 ){

let home_isometric_animation = lottie.loadAnimation({
container: document.getElementById("home-isometric"),
renderer: 'svg',
loop: true,
autoplay: false,
path: '../assets/lottie-files/home-isometric.json'
});
home_isometric_animation.addEventListener('DOMLoaded', function(){
home_isometric_animation.playSegments([[1,180],[180,1]], true);
});

}

}
init_home();

div#home-isometric{
& > svg{
margin-top:50px;
max-height: 300px;
transform: scale(1.5) !important;
}
@media (min-width: 992px) {
&::after{
content:'Business Support Analyst, Cofondatore di Pellet del Sureste e professionista nel settore Informatica e servizi.';
position: absolute;
top: 50%;
left: -300px;
width: 500px;
font-family: 'Courgette', cursive;
text-align: justify;
font-size: 1.6em;
color: #393858;
}
}
}

<div id="home-isometric" class="col" data-velocity-slideleftin="600"></div>





Here there is another question could be useful, not for me unluckily -> SVG path animation flicker on Safari



Many Thanks,
Andrea










share|improve this question


























    up vote
    0
    down vote

    favorite












    I'm using Lottie Web - js plugin to animate a SVG path. All works fine except in Safari, where the SVG is flickering up and down, like this screenshot below:



    Image of Yaktocat



    I noticed that the problem occurs when I move the mouse near the SVG or when I resize the browser windows on Safari desktop, while, in a mobile enviroment, when I change page and return to the index.



    I've a mousemove event applied on body tag. I'm using pjax to change the page (swup.js). I'm using translate3d in css to animate the component when entered in a page. There is no error shown in chrome/safari console. I've already tried to remove the further script or transformations on the svg, but the problem is still there.



    I cannot understand what could be the problem. Please visit andreabalbo.com on Safari to test it out. The original file is here lottie file.



    Here some code:






    function init_home() {

    //lottie home me at office
    if( $("#home-isometric").length != 0 ){

    let home_isometric_animation = lottie.loadAnimation({
    container: document.getElementById("home-isometric"),
    renderer: 'svg',
    loop: true,
    autoplay: false,
    path: '../assets/lottie-files/home-isometric.json'
    });
    home_isometric_animation.addEventListener('DOMLoaded', function(){
    home_isometric_animation.playSegments([[1,180],[180,1]], true);
    });

    }

    }
    init_home();

    div#home-isometric{
    & > svg{
    margin-top:50px;
    max-height: 300px;
    transform: scale(1.5) !important;
    }
    @media (min-width: 992px) {
    &::after{
    content:'Business Support Analyst, Cofondatore di Pellet del Sureste e professionista nel settore Informatica e servizi.';
    position: absolute;
    top: 50%;
    left: -300px;
    width: 500px;
    font-family: 'Courgette', cursive;
    text-align: justify;
    font-size: 1.6em;
    color: #393858;
    }
    }
    }

    <div id="home-isometric" class="col" data-velocity-slideleftin="600"></div>





    Here there is another question could be useful, not for me unluckily -> SVG path animation flicker on Safari



    Many Thanks,
    Andrea










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm using Lottie Web - js plugin to animate a SVG path. All works fine except in Safari, where the SVG is flickering up and down, like this screenshot below:



      Image of Yaktocat



      I noticed that the problem occurs when I move the mouse near the SVG or when I resize the browser windows on Safari desktop, while, in a mobile enviroment, when I change page and return to the index.



      I've a mousemove event applied on body tag. I'm using pjax to change the page (swup.js). I'm using translate3d in css to animate the component when entered in a page. There is no error shown in chrome/safari console. I've already tried to remove the further script or transformations on the svg, but the problem is still there.



      I cannot understand what could be the problem. Please visit andreabalbo.com on Safari to test it out. The original file is here lottie file.



      Here some code:






      function init_home() {

      //lottie home me at office
      if( $("#home-isometric").length != 0 ){

      let home_isometric_animation = lottie.loadAnimation({
      container: document.getElementById("home-isometric"),
      renderer: 'svg',
      loop: true,
      autoplay: false,
      path: '../assets/lottie-files/home-isometric.json'
      });
      home_isometric_animation.addEventListener('DOMLoaded', function(){
      home_isometric_animation.playSegments([[1,180],[180,1]], true);
      });

      }

      }
      init_home();

      div#home-isometric{
      & > svg{
      margin-top:50px;
      max-height: 300px;
      transform: scale(1.5) !important;
      }
      @media (min-width: 992px) {
      &::after{
      content:'Business Support Analyst, Cofondatore di Pellet del Sureste e professionista nel settore Informatica e servizi.';
      position: absolute;
      top: 50%;
      left: -300px;
      width: 500px;
      font-family: 'Courgette', cursive;
      text-align: justify;
      font-size: 1.6em;
      color: #393858;
      }
      }
      }

      <div id="home-isometric" class="col" data-velocity-slideleftin="600"></div>





      Here there is another question could be useful, not for me unluckily -> SVG path animation flicker on Safari



      Many Thanks,
      Andrea










      share|improve this question













      I'm using Lottie Web - js plugin to animate a SVG path. All works fine except in Safari, where the SVG is flickering up and down, like this screenshot below:



      Image of Yaktocat



      I noticed that the problem occurs when I move the mouse near the SVG or when I resize the browser windows on Safari desktop, while, in a mobile enviroment, when I change page and return to the index.



      I've a mousemove event applied on body tag. I'm using pjax to change the page (swup.js). I'm using translate3d in css to animate the component when entered in a page. There is no error shown in chrome/safari console. I've already tried to remove the further script or transformations on the svg, but the problem is still there.



      I cannot understand what could be the problem. Please visit andreabalbo.com on Safari to test it out. The original file is here lottie file.



      Here some code:






      function init_home() {

      //lottie home me at office
      if( $("#home-isometric").length != 0 ){

      let home_isometric_animation = lottie.loadAnimation({
      container: document.getElementById("home-isometric"),
      renderer: 'svg',
      loop: true,
      autoplay: false,
      path: '../assets/lottie-files/home-isometric.json'
      });
      home_isometric_animation.addEventListener('DOMLoaded', function(){
      home_isometric_animation.playSegments([[1,180],[180,1]], true);
      });

      }

      }
      init_home();

      div#home-isometric{
      & > svg{
      margin-top:50px;
      max-height: 300px;
      transform: scale(1.5) !important;
      }
      @media (min-width: 992px) {
      &::after{
      content:'Business Support Analyst, Cofondatore di Pellet del Sureste e professionista nel settore Informatica e servizi.';
      position: absolute;
      top: 50%;
      left: -300px;
      width: 500px;
      font-family: 'Courgette', cursive;
      text-align: justify;
      font-size: 1.6em;
      color: #393858;
      }
      }
      }

      <div id="home-isometric" class="col" data-velocity-slideleftin="600"></div>





      Here there is another question could be useful, not for me unluckily -> SVG path animation flicker on Safari



      Many Thanks,
      Andrea






      function init_home() {

      //lottie home me at office
      if( $("#home-isometric").length != 0 ){

      let home_isometric_animation = lottie.loadAnimation({
      container: document.getElementById("home-isometric"),
      renderer: 'svg',
      loop: true,
      autoplay: false,
      path: '../assets/lottie-files/home-isometric.json'
      });
      home_isometric_animation.addEventListener('DOMLoaded', function(){
      home_isometric_animation.playSegments([[1,180],[180,1]], true);
      });

      }

      }
      init_home();

      div#home-isometric{
      & > svg{
      margin-top:50px;
      max-height: 300px;
      transform: scale(1.5) !important;
      }
      @media (min-width: 992px) {
      &::after{
      content:'Business Support Analyst, Cofondatore di Pellet del Sureste e professionista nel settore Informatica e servizi.';
      position: absolute;
      top: 50%;
      left: -300px;
      width: 500px;
      font-family: 'Courgette', cursive;
      text-align: justify;
      font-size: 1.6em;
      color: #393858;
      }
      }
      }

      <div id="home-isometric" class="col" data-velocity-slideleftin="600"></div>





      function init_home() {

      //lottie home me at office
      if( $("#home-isometric").length != 0 ){

      let home_isometric_animation = lottie.loadAnimation({
      container: document.getElementById("home-isometric"),
      renderer: 'svg',
      loop: true,
      autoplay: false,
      path: '../assets/lottie-files/home-isometric.json'
      });
      home_isometric_animation.addEventListener('DOMLoaded', function(){
      home_isometric_animation.playSegments([[1,180],[180,1]], true);
      });

      }

      }
      init_home();

      div#home-isometric{
      & > svg{
      margin-top:50px;
      max-height: 300px;
      transform: scale(1.5) !important;
      }
      @media (min-width: 992px) {
      &::after{
      content:'Business Support Analyst, Cofondatore di Pellet del Sureste e professionista nel settore Informatica e servizi.';
      position: absolute;
      top: 50%;
      left: -300px;
      width: 500px;
      font-family: 'Courgette', cursive;
      text-align: justify;
      font-size: 1.6em;
      color: #393858;
      }
      }
      }

      <div id="home-isometric" class="col" data-velocity-slideleftin="600"></div>






      javascript jquery html css3 svg






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 15:37









      Andrea

      4510




      4510





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240508%2fflickering-svg-animation-on-safari%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240508%2fflickering-svg-animation-on-safari%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Full-time equivalent

          Bicuculline

          さくらももこ