CSS 在 JavaFX8 中添加光照效果
Adding Lighting effect in JavaFX8 from CSS
我正在尝试通过 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;
} `
您无法在 JavaFX 8 中通过 CSS 添加光照效果。-fx-effect
属性仅支持 DropShadow 和 InnerShadow 效果的值。必须在代码中添加灯光效果。
我正在尝试通过 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;
} `
您无法在 JavaFX 8 中通过 CSS 添加光照效果。-fx-effect
属性仅支持 DropShadow 和 InnerShadow 效果的值。必须在代码中添加灯光效果。