Javafx css achieve this sort of effect on text -
i trying style text in javafx application making use of css. effect trying achieve this:
i have font, effect missing. .css
file contains text.
.progress-view .title { -fx-font-family: "bilbo swash caps"; -fx-font-size: 34px; -fx-text-fill: white; -fx-blend-mode: darken; -fx-opacity: 0.8; -fx-effect: innershadow(gaussian , rgba(0,0,0,0.2),6,0.0,0,2); }
the effect have not remotely close this. achievable manipulating effect or else?
thanks
using following seem have gotten text second 1 (bottom) enough me:
.progress-view .title { -fx-font: 60px "bilbo swash caps"; -fx-fill: white; -fx-stroke: black; -fx-stroke-width: 2; -fx-blend-mode: darken; }
would see smokey effect of other 1 though, post solutions found. thanks!
Comments
Post a Comment