使用HTML和CSS修复按钮动画

4

我有一个基本的HTML和CSS按钮,当鼠标悬停在上面时会显示文本。我想要修正动画效果,因为目前不是很正确。

当鼠标移开时,动画会使按钮的大小急剧减小。所以也许可以添加一个过渡效果来完成它?

希望我表达的足够清晰了!

.home-button {
  line-height: 100%;
  padding: 5px 40px 5px 5px;
  font-family: Arial;
  font-size: 12px;
  position: relative;
}

.home-button span {
  position: absolute;
  top: 20px;
  opacity: 0;
  font-weight: 600;
  color: #454b54;
}

.home-button:hover {
  animation-name: enlarge;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.home-button:hover span {
  animation-name: appear;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.home-button::before {
  margin-right: 5px;
  background-image: url(https://mcusercontent.com/ec104f3d77537e1962ab6441c/images/d7bb4928-a156-4682-9677-d0d5b47c3a21.png);
  background-size: 40px 40px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  content: "";
}

.home-complement-button {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 8px #dadce0;
  transition: 0.3s;
}

.home-complement-button:focus {
  background-color: #e8f0fb !important;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes enlarge {
  from {
    padding-right: 40px;
  }
  to {
    padding-right: 50px;
  }
}
<div style="display:flex;user-select:none"><a class="home-button home-complement-button" href="https://esims.one/" style="-webkit-tap-highlight-color:rgba(0,0,0,0);text-decoration:none"><span>Home</span></a></div>

2个回答

3
你不需要使用动画,只需使用过渡效果。这样会更加平滑。

.home-button {
  line-height: 100%;
  padding: 5px 40px 5px 5px;
  font-family: Arial;
  font-size: 12px;
  position: relative;
  transition: 1s;
}

.home-button span {
  position: absolute;
  top: 20px;
  opacity: 0;
  font-weight: 600;
  color: #454b54;
}

.home-button:hover {
  padding-right: 50px;
}

.home-button:hover span {
  transition: opacity 1.5s; /* I added the transition here because I want it to take 0 seconds when come back. */
  opacity: 1;
}

.home-button::before {
  margin-right: 5px;
  background-image: url(https://mcusercontent.com/ec104f3d77537e1962ab6441c/images/d7bb4928-a156-4682-9677-d0d5b47c3a21.png);
  background-size: 40px 40px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  content: "";
}

.home-complement-button {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 8px #dadce0;
  transition: 0.3s;
}

.home-complement-button:focus {
  background-color: #e8f0fb !important;
}
<div style="display:flex;user-select:none"><a class="home-button home-complement-button" href="https://esims.one/" style="-webkit-tap-highlight-color:rgba(0,0,0,0);text-decoration:none"><span>Home</span></a></div>


过渡是一种动画形式,不是吗? - Lajos Arpad
考虑到这一点,但是在返回时与动画有所不同。动画会突然中断,而过渡则不会被打断。 - doğukan
1
明白了。在指出这个细节之前,我已经为你的答案点赞了。 - Lajos Arpad

3

我可以提供这个解决方案:

.home-button {
  line-height: 100%;
  padding: 5px 5px 5px 5px;
  font-family: Arial;
  font-size: 12px;
  position: relative;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40px;
  
  transition: 0.3s;
}

.home-button span {
  top: 20px;
  opacity: 0;
  font-weight: 600;
  color: #454b54;
  
  margin: auto;
}

.home-button:hover {
  width: 100px;
}

.home-button:hover span {
  opacity: 1;
  animation-name: text_left;
  animation-duration: 1s;
}

.home-button::before {
  background-image: url(https://mcusercontent.com/ec104f3d77537e1962ab6441c/images/d7bb4928-a156-4682-9677-d0d5b47c3a21.png);
  background-size: 40px 40px;
  display: inline-block;
  min-width: 40px;
  min-height: 40px;
  border-radius: 100%;
  content: "";
}

.home-complement-button {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 8px #dadce0;
}

.home-complement-button:focus {
  background-color: #e8f0fb !important;
}

@keyframes text_left {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
<div style="display:flex;user-select:none"><a class="home-button home-complement-button" href="https://esims.one/" style="-webkit-tap-highlight-color:rgba(0,0,0,0);text-decoration:none"><span>Home</span></a></div>


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接