我试图通过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;
} `
答案 0 :(得分:3)
您无法在JavaFX 8中通过CSS添加光照效果。-fx-effect
属性仅支持DropShadow和InnerShadow效果的值。必须在代码中添加光照效果。