按钮上的CSS3颜色过渡



我似乎不能让我的按钮改变颜色与CSS3过渡。我已经成功地在和标签上使用了相同的迂回代码,但没有这样的运气与按钮。

代码如下:

.button {
    position:absolute;
    width: 135px;
    height: 46px;
    background-color: #ef6529;
    text-decoration: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #c33b00;
    box-shadow: 0px 4px 0px #af5a5a;
    -moz-box-shadow: 0px 4px 0px #af5a5a;
    -webkit-box-shadow: 0px 4px 0px #af5a5a;
    -webkit-transition:color 1s ease-in;  
    -moz-transition:color 1s ease-in;  
    -o-transition:color 1s ease-in;  
    transition:color 1s ease-in;
}
.button:hover {
    width: 135px;
    height: 46px;
    background-color: #ff6726;
    border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #c33b00;
    text-decoration: none;
}

和HTML:

<a href="#" class="button">
    <!--<h2>PUSH ME!</h2>-->
</a>

干杯!

您没有为按钮指定颜色。我猜你想转换背景色。将transition:color 1s ease-in;改为transition: background-color 1s ease-in;

相关内容

  • 没有找到相关文章

最新更新