【发布时间】:2016-04-30 00:49:01
【问题描述】:
我正在尝试通过 CSS 文件将灯光效果添加到按钮,我已经搜索过并且只能通过 JavaFx 代码找到方法。谁能帮忙?`
.button.CommitButtonBig {
-fx-background-color: #24BE58;
-fx-text-fill: white;
-fx-background-radius: 5px;
}
.button.CommitButtonBig:hover{
-fx-background-color: linear-gradient(#39e600, #39e600);
}
.button.CommitButtonBig:focused{
-fx-effect: lighting;
} `
【问题讨论】:
标签: css javafx effects lighting