从动画结束的地方继续过渡

时间:2019-06-01 13:26:39

标签: css css-transitions css-animations css-transforms

请参见以下按钮动画:

html {
  background: white;
  font-family: Arial;
}

.button {
  position: relative;
  display: inline-block;
  color: #000;
  border: 2px solid #000;
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition-property: color, background, border-color;
  transition-duration: 0.3s;
}
.button:hover {
  color: #fff;
}
.button:hover ._background:after {
  transform: translateX(0);
  animation: fill-horizontal 0.3s linear 0s 1;
}
.button ._background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
.button ._background:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  transform: translateX(100%);
  transition: transform .3s;
}

@keyframes fill-horizontal {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
<a class="button" href="javascript:">
  <div class="_background"></div>
  Button
</a>

预期的动画是将._background:after元素从左侧扫入,然后向右扫出,如下所示:

  1. translateX(-100%)
  2. translateX(0)-悬停
  3. translateX(100%)-删除悬停

当用户将鼠标悬停在CSS动画(.3s)期间时,动画会按预期工作,但是如果用户在CSS动画完成之前“取消悬停”,这看起来会很糟糕。

我希望transitiontranslateX(100%)结束处继续。这有可能吗?

注意-我知道animation元素不是必需的,它具有与此问题无关的其他功能。

1 个答案:

答案 0 :(得分:2)

为了避免这种不良影响,您可以不同地考虑相同的影响:

这是一个使用背景动画的想法,其中的技巧是仅在大小更改后才更改位置。

.button {
  position: relative;
  display: inline-block;
  color: #000;
  border: 2px solid #000;
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-image:linear-gradient(#000,#000);
  background-size:0% 100%;
  background-position:left;
  background-repeat:no-repeat;
  background-origin:border-box;
  transition:color 0.3s, background-size 0.3s, background-position 0s 0.3s;
}
.button:hover {
  color:#fff;
  background-size:100% 100%;
  background-position:right;
}
<div class="button">Some text</div>

使用此方法,您将有一个过渡,以防您快速悬停。


强迫动画完成的一个怪诞的想法是考虑一个伪元素,该元素将使悬停区域更大,并确保将悬停到最后:

.button {
  position: relative;
  display: inline-block;
  color: #000;
  border: 2px solid #000;
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-image:linear-gradient(#000,#000);
  background-size:0% 100%;
  background-position:left;
  background-repeat:no-repeat;
  background-origin:border-box;
  transition:color 0.3s, background-size 0.3s, background-position 0s 0.3s;
}
.button:hover {
  color:#fff;
  background-size:100% 100%;
  background-position:right;
}

.button:hover:before {
  content:"";
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:99;
  animation:remove 0s 0.3s forwards;
}
@keyframes remove {
  to {
    top:100%;
  }
}
<div class="button">Some text</div>