我有一个带有渐变的按钮,我希望渐变在悬停时切换方向。这是开始的 CSS:
.button-1 {
border: 1px solid #15440a;
border-radius: 2px;
color: white;
background-color: #2890b;
background-image: linear-gradient(#299c0f 20%, #1a7b09 80%);
font-size: 13px;
}
我想做这样的事情:
.button-1:hover {
/* change just direction of gradient */
/* keep colors the same */
}
有没有办法做到这一点?