在CSS按钮上的悬停效果

亚历克斯

我正在尝试使用CSS创建悬停效果。这是链接:http : //creativeartbd.com/demo/test.html

这是代码:

/* GENERAL BUTTON STYLING */
button,
button::after {
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
    transition: all 0.3s;
}

button {
  background: none;
  border: 3px solid red;
  border-radius: 5px;
  color: red;
  display: block;
  font-size: 1.6em;
  font-weight: bold;
  margin: 1em auto;
  padding: 2em 6em;
  position: relative;
  text-transform: uppercase;
}

button::before,
button::after {
  background:red;
  content: '';
  position: absolute;
  z-index: -1;
}

button:hover {
  color: black;
}


/* BUTTON 5 */
.btn-5 {
  overflow: hidden;
}

.btn-5::after {
  /*background-color: #f00;*/
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}

.btn-5:hover:after {
  height: 100%;
  width: 135%;
}
<button class="btn-5">Button 5</button>

现在,如果您运行它,则将鼠标悬停在按钮上时,您会看到有样式。现在,我想为此按钮设置初始背景。因此,如果我在这里设置背景:

button {
   background: orange;
}

如果这样做,则效果没有显示。

您能告诉我原因以及如何解决吗?

JSFiddle

陪同Afif

添加z-index:0到元素以创建堆叠上下文,并将伪元素保留在内部。然后可以添加背景

/* GENERAL BUTTON STYLING */
button,
button::after {
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
    transition: all 0.3s;
}

button {
  background: none;
  border: 3px solid red;
  border-radius: 5px;
  color: red;
  display: block;
  font-size: 1.6em;
  font-weight: bold;
  margin: 1em auto;
  padding: 2em 6em;
  position: relative;
  z-index:0;
  background:orange;
  text-transform: uppercase;
}

button::before,
button::after {
  background:red;
  content: '';
  position: absolute;
  z-index: -1;
}

button:hover {
  color: black;
}


/* BUTTON 5 */
.btn-5 {
  overflow: hidden;
}

.btn-5::after {
  /*background-color: #f00;*/
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}

.btn-5:hover:after {
  height: 100%;
  width: 135%;
}
<button class="btn-5">Button 5</button>

您还可以简化代码,如下所示:

button {
  background: none;
  border: 3px solid red;
  border-radius: 5px;
  color: red;
  display: block;
  font-size: 1.6em;
  font-weight: bold;
  margin: 1em auto;
  padding: 2em 6em;
  background:
    linear-gradient(50deg,red 50%,transparent 50.5%),
    orange;
  background-size:250% 100%;
  background-position: right;
  text-transform: uppercase;
    transition: all 0.5s;
}
button:hover {
  color: black;
  background-position: left;
}
<button class="btn-5">Button 5</button>

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章