.button-blue{
border: 1px solid #00B7EF;
border-radius: 5px;
color: #00B7EF !important;
background-color: transparent;
-webkit-transition-property: background-color, color;
-webkit-transition-duration: 0.5s;
webkit-property: background-color, color;
webkit-duration: 0.5s;
}
.button-blue:hover {
border: 1px solid #00B7EF;
border-radius: 5px;
color: white !important;
background-color: #00B7EF;
-webkit-transition-property: background-color, color;
-webkit-transition-duration: 0.5s;
webkit-property: background-color, color;
webkit-duration: 0.5s;
}
答案 0 :(得分:0)
您已经拥有之前声明的href的过渡属性,因此请先使用您的href说明一次,然后从按钮中删除过渡属性,这样您的CSS将如下所示:
工作小提琴Fiddle
.navigation-bar ul li a {
color: #333333;
text-decoration: none;
font-family: 'Roboto', sans-serif;
font-size: 19px;
font-weight: 400;
font-style: bold;
padding: 5px 5px 10px 10px;
-webkit-transition-property: background-color, color;
-webkit-transition-duration: 0.5s;
webkit-property: background-color, color;
webkit-duration: 0.5s;
}
.button-blue{
border: 1px solid #00B7EF;
border-radius: 5px;
color: #00B7EF !important;
background-color: transparent;
}
.button-blue:hover {
border: 1px solid #00B7EF;
border-radius: 5px;
color: white !important;
background-color: #00B7EF;
}
答案 1 :(得分:0)
webkit-property
和webkit-duration
不是 CSS属性。
正确的语法是transition-property
和
transition-duration
。
-webkit - 仅适用于Google Chrome上的CSS功能vendor prefix 和更新版本的Opera。
:hover
状态下,您只需要声明
您将要更改的属性,不必重复
宣布的。所以,border-radius已经出局了(除非你
想要改变它。)。您已经在.navigation-bar ul li a
中宣布过渡(并且仅针对颜色而非背景进行过渡)。
因此,现在您遇到了 specificity 的问题,因为定位父类然后直接定位到HTML CSS中的元素比仅仅针对某个类具有更多优先级 (You can check it here)。
如果a
中的所有 .navigation-bar
元素都包含在内
同样的过渡,你可以在这里设置。 (不理想,但它有效
更清洁,变化会更少。)
您还需要为背景添加转场。这并没有改变 其余的链接,因为如果你没有设置背景 悬停(或焦点)状态,它不会改变。
显然,你必须从中删除过渡
.button-blue
,因为你不再使用它了(它会
重复)。