{"id":15056126,"url":"https://github.com/iamgio/froxty","last_synced_at":"2025-07-23T09:05:13.253Z","repository":{"id":41197497,"uuid":"269201392","full_name":"iamgio/froxty","owner":"iamgio","description":":icecream: iOS frosty/translucent effect to JavaFX.","archived":false,"fork":false,"pushed_at":"2022-11-04T17:10:39.000Z","size":57,"stargazers_count":49,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-19T08:14:35.163Z","etag":null,"topics":["frosted","frosted-effect","frosted-glass","ios","javafx","javafx-component","javafx-components","javafx-library","ui"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iamgio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-03T21:47:17.000Z","updated_at":"2025-05-03T05:36:52.000Z","dependencies_parsed_at":"2023-01-21T20:02:53.161Z","dependency_job_id":null,"html_url":"https://github.com/iamgio/froxty","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/iamgio/froxty","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgio%2Ffroxty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgio%2Ffroxty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgio%2Ffroxty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgio%2Ffroxty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamgio","download_url":"https://codeload.github.com/iamgio/froxty/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgio%2Ffroxty/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266649137,"owners_count":23962174,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["frosted","frosted-effect","frosted-glass","ios","javafx","javafx-component","javafx-components","javafx-library","ui"],"created_at":"2024-09-24T21:48:11.412Z","updated_at":"2025-07-23T09:05:13.226Z","avatar_url":"https://github.com/iamgio.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://i.imgur.com/l1JdYMt.png\" alt=\"Banner\"\u003e\n\u003c/p\u003e\n\nFroXty is JavaFX library which replicates the famous iOS translucent effect with ease.\n\n![Demo](https://i.imgur.com/Ri1srhg.gif) \n\n## Set-up\n\nFroXty can be imported into your project either by downloading the JAR file (see releases) or via Maven/Gradle through JitPack.\n\n### Maven\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.iAmGio\u003c/groupId\u003e\n    \u003cartifactId\u003efroxty\u003c/artifactId\u003e\n    \u003cversion\u003e1.4.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle\n```gradle\nallprojects {\n    repositories {\n        ...\n        maven { url 'https://jitpack.io' }\n    }\n}\ndependencies {\n    implementation 'com.github.iAmGio:froxty:1.4.0'\n}\n```\n\n## Getting started\n\nThe following piece of code will generate a frosty effect out of any node:\n```java\n//...\nFrostyEffect effect = new FrostyEffect(opacity, updateTime); // Instantiates the effect. The parameters are optional and default to (0.5, 10)\nFrostyBox box = new FrostyBox(effect, node); // Instantiates a container with frosty effect\nbox.setBorderRadius(borderRadius); // Rounds the borders of the box\nroot.getChildren().add(box); // Adds the container to the scene\n```\n\nThen it's possible to style it:\n```css\n.frosty-box {\n    -fx-effect: dropshadow(gaussian, rgba(0, 0, 0, .5), 15, 0, 0, 5);\n}\n\n.frosty-box \u003e * {\n    -fx-background-color: rgba(255, 255, 255, .4);\n    -fx-background-radius: 20;\n}\n```\n\n## Important notes\n- Target nodes must not be directly added to the root. Add the Frosty Box, which wraps the target node, instead.\n- Applying drop shadows to the target node results in visual errors. Apply effects to the Frosty Box instead.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamgio%2Ffroxty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamgio%2Ffroxty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamgio%2Ffroxty/lists"}