CSS在Firefox上随机转换“转换”某些元素

时间:2019-01-17 14:39:41

标签: javascript jquery css css-transitions css-transforms

首先,它对我在Chrome上可以100%正常运行,但只能像在Firefox上所描述的标题一样工作

我正在尝试制作一个简单的动画(使用过渡),使其在鼠标悬停时无限期运行,并在鼠标悬停时缓慢回到初始位置

问题在于,它在Firefox中的行为不同

根据要求,以下是最小化和简化的代码,再现了我当前的问题:

var arcs = $("#logoSec");
var greenarc = $(".greenarc");

var garcMs = 2100; // In ms
var arcsAnimBool = false; // If false, stops the anim loop

greenarc.css({
  transition: "transform " + (garcMs * 1) + "ms ease-in-out"
});

function greenArcNormal() {
  if (!arcsAnimBool) return;
  greenarc.css("transform", "rotate(70deg)");
  setTimeout(greenArcRevert, garcMs); // Call the reverse rotation after garcMs ms
}

function greenArcRevert() {
  if (!arcsAnimBool) return;
  greenarc.css("transform", "rotate(-70deg)");
  setTimeout(greenArcNormal, garcMs); // Call the normal rotation after garcMs ms
}

arcs.hover(
  function() { // On mouseover
    arcsAnimBool = true;
    greenarc.css({
      transition: "transform " + (garcMs * 1) + "ms ease-in-out"
    });
    greenArcNormal();
  },
  function() { // On mouseout
    arcsAnimBool = false; // Set to false to stop the infinite loop of greenArcRevert/Normal
    greenarc.css("transform", "rotate(0deg)"); // Revert arc back to initial position
    greenarc.css({
      transition: "transform " + (garcMs * 0.5) + "ms ease-in-out"
    });
  }
);
  #ArcsLogo {
    height: 550px;
  }

  #logoSec {
    display: flex;
    background-color: #fdfdfd;
  }
<div id="logoSec">
  <svg class="arcs" version="1.1" id="ArcsLogo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-12 30 383.4 407.5" style="enable-background:new 0 0 383.4 407.5;" xml:space="preserve">
        <style type="text/css">
            .greenarc {
                fill: #00ff00;
                transform-origin: 50% 50%;
            }

            .graycircle {
                fill: #5d5d5d;
                transform-origin: 50% 50%;
            }

            .redarc {
                fill: #ff0000;
                transform-origin: 50% 50%;
            }
        </style>
        <path id="GreenArc" class="greenarc" d="M201.1,62.7c-3.2,0-6.3,0.1-9.4,0.3c77.7,5.5,136.2,72.9,130.7,150.6
                c-4.9,70-60.7,125.8-130.7,130.7c3.1,0.2,6.3,0.4,9.4,0.4c77.9,0,141-63.1,141-141S279,62.7,201.1,62.7L201.1,62.7z" />
        <circle id="GrayCircle" class="graycircle" cx="191.7" cy="203.7" r="21.2" />
        <path id="RedArc" class="redarc" d="M60.2,203.7c0-84.6,65.9-154.6,150.4-159.6c-3.1-0.2-6.3-0.3-9.5-0.3
                C112.8,43.2,40.7,114.2,40,202.5c-0.7,88.3,70.3,160.4,158.6,161.1c0.8,0,1.7,0,2.5,0c3.2,0,6.3-0.1,9.5-0.3
                C126.2,358.3,60.2,288.3,60.2,203.7z" />
    </svg>
</div>

(jsfiddle中的简化代码) https://jsfiddle.net/Ferdam/htxcwanu/28/

(旧完整代码:https://jsfiddle.net/Ferdam/9kz52e6h/3/

我对HTML / JS / JQuery / CSS的了解很少,所以我可能会缺少一些基本的知识,

感谢您的帮助。谢谢!

编辑:

直接引用我对尼沃利的回答:

  

我忘了提到我以前尝试过使用关键帧,但是   问题是我无法像我提供的代码那样工作   因为只要我将元素悬停,就可以“传送”回   初始位置,这就是为什么我开始使用CSS过渡的原因。   我只是找不到将元素重新设置为初始位置的方法   使用关键帧

1 个答案:

答案 0 :(得分:2)

不需要javascript;只需使用css animations。我只为你做绿色的:

#ArcsLogo {
  height: 550px;
}

#logoSec {
  background-color: #fefefe;
}

.greenarc {
  fill: #00ff00;
  transform-origin: 50% 50%;
  transform: rotate(70deg);
  animation: myRotate 4200ms alternate infinite ease-in-out;
}

.graycircle {
  fill: #5d5d5d;
  transform-origin: 50% 50%;
}

.redarc {
  fill: #ff0000;
  transform-origin: 50% 50%;
}

@keyframes myRotate {
  0% {
    transform: rotate(70deg);
  }
  100% {
    transform: rotate(-70deg);
  }
}
<div id="logoSec">
  <svg class="arcs" version="1.1" id="ArcsLogo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-12 30 383.4 407.5" style="enable-background:new 0 0 383.4 407.5;" xml:space="preserve">
        <path id="GreenArc" class="greenarc" d="M201.1,62.7c-3.2,0-6.3,0.1-9.4,0.3c77.7,5.5,136.2,72.9,130.7,150.6
                c-4.9,70-60.7,125.8-130.7,130.7c3.1,0.2,6.3,0.4,9.4,0.4c77.9,0,141-63.1,141-141S279,62.7,201.1,62.7L201.1,62.7z" />
        <circle id="GrayCircle" class="graycircle" cx="191.7" cy="203.7" r="21.2" />
        <path id="RedArc" class="redarc" d="M60.2,203.7c0-84.6,65.9-154.6,150.4-159.6c-3.1-0.2-6.3-0.3-9.5-0.3
                C112.8,43.2,40.7,114.2,40,202.5c-0.7,88.3,70.3,160.4,158.6,161.1c0.8,0,1.7,0,2.5,0c3.2,0,6.3-0.1,9.5-0.3
                C126.2,358.3,60.2,288.3,60.2,203.7z" />
    </svg>


</div>

它们的关键是定义keyframes,我刚刚从您在javascript中所做的transform声明中复制了它们。然后通过将animation规则添加到greenarc类中,我们将其告知

  • 使用关键帧myRotate(将名称更改为所需的名称)
  • 使用4200ms0%移至100%。我将其加倍,因为我认为您的逻辑使2100msrotate(0)移至rotate(70)
  • alternate动画的方向,以使其来回移动而不是沿一个方向移动,然后捕捉回到动画的开始位置。
  • infinite ly重复动画
  • 像在JavaScript中一样使用ease-in-out,因为它越接近末端,速度就越慢。

有关更多详细信息和示例,请参见动画文档。