退出时CSS擦除动画

时间:2020-05-18 09:45:31

标签: css css-animations

我有一个动画,在悬停here上从左向右擦除。我想要一个退出动画,该动画也从左到右(而不是演示中所示的从右到左)。我该如何实现?

.btn {
  color: #31302B;
  background: #FFF;
  margin: 25px;
  padding: 10px 0;
  width: 240px;
  border: 3px solid #31302B;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #6a0dad;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.btn:hover {
  box-shadow: inset 240px 0 0 0 #6a0dad;
  color: #fff;
}
<div class="btn">CONTAINER</div>

3 个答案:

答案 0 :(得分:1)

您可以使用for descriptor in request.Animal.DOG.DESCRIPTOR.fields_by_name

@keyframes
.btn {
  color: #31302B;
  background: #FFF;
  margin: 25px;
  padding: 10px 0;
  width: 240px;
  border: 3px solid #31302B;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  animation: out 0.8s ease;
}

@keyframes in {
  from {
    box-shadow: inset 0 0 0 0 #6a0dad;
    color: black;
  }
  to {
    box-shadow: inset 240px 0 0 0 #6a0dad;
    color: white;
  }
}

@keyframes out {
  from {
    box-shadow: inset -240px 0 0 0 #6a0dad;
    color: white;
  }
  to {
    box-shadow: inset 0 0 0 0 #6a0dad;
    color: black;
  }
}

.btn:hover {
  animation: in 0.8s ease;
  box-shadow: inset 240px 0 0 0 #6a0dad;
  color: white;
}

答案 1 :(得分:0)

我建议为此使用伪元素::after和transform-origin。

.btn::after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #6a0dad;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transition: all ease 0.8s;
    transform-origin: left;
}
.btn:hover {
    color: white;
}
.btn:hover::after {
    transform: scaleX(1);
    transform-origin: right;
}

position: relative; z-index: 1;添加到.btn类

答案 2 :(得分:0)

一个简单的后台过渡可以轻松地做到这一点而无需关键帧:

.btn {
  color: #31302B;
  background: #FFF;
  margin: 25px;
  padding: 10px 0;
  width: 240px;
  border: 3px solid #31302B;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  background:linear-gradient(#6a0dad,#6a0dad) left/0% 100% no-repeat;
  transition: all ease 0.5s,background-position 0s 0.5s;
}

.btn:hover {
  background-size:100% 100%;
  background-position:right;
  color: #fff;
}
<div class="btn">CONTAINER</div>

相关:How to animate underline from left to right?