gpt4 book ai didi

按钮上的 CSS3 颜色过渡

转载 作者:太空宇宙 更新时间:2023-11-03 18:49:19 25 4
gpt4 key购买 nike

我似乎无法让我的按钮使用 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;

关于按钮上的 CSS3 颜色过渡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15462543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com