{"id":15103125,"url":"https://github.com/omnedia/ngx-meteors","last_synced_at":"2026-03-10T14:30:57.087Z","repository":{"id":253434596,"uuid":"843453885","full_name":"omnedia/ngx-meteors","owner":"omnedia","description":"A simple component library to create a container with an animated background. ","archived":false,"fork":false,"pushed_at":"2025-11-29T17:10:45.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-01T20:52:49.106Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"SCSS","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/omnedia.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-16T14:49:29.000Z","updated_at":"2025-11-29T17:10:45.000Z","dependencies_parsed_at":"2025-02-08T02:31:01.552Z","dependency_job_id":"146dca32-7590-46fb-b65b-554cd614f649","html_url":"https://github.com/omnedia/ngx-meteors","commit_stats":null,"previous_names":["omnedia/ngx-meteors"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/omnedia/ngx-meteors","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-meteors","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-meteors/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-meteors/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-meteors/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omnedia","download_url":"https://codeload.github.com/omnedia/ngx-meteors/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-meteors/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30337170,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-09-25T19:21:25.020Z","updated_at":"2026-03-10T14:30:57.070Z","avatar_url":"https://github.com/omnedia.png","language":"SCSS","funding_links":[],"categories":["Recently Updated","Third Party Components"],"sub_categories":["[Oct 01, 2024](/content/2024/10/01/README.md)","Animations"],"readme":"# ngx-meteors\n\n\u003ca href=\"https://ngxui.com\" target=\"_blank\" style=\"display: flex;gap: .5rem;align-items: center;cursor: pointer; padding: 0 0 0 0; height: fit-content;\"\u003e\n  \u003cimg src=\"https://ngxui.com/assets/img/ngxui-logo.png\" style=\"width: 64px;height: 64px;\"\u003e\n\u003c/a\u003e\n\nThis Library is part of the NGXUI ecosystem. \u003cbr\u003e\nView all available components at https://ngxui.com\n\n`@omnedia/ngx-meteors` is an Angular library that adds a mesmerizing meteor shower animation effect to your components. The meteors fly across the screen in a configurable direction and color, creating a dynamic and engaging background effect for your Angular applications.\n\n## Features\n\n- Meteor shower animation with customizable rotation and color.\n- Flexible configuration to fit the style and theme of your application.\n- Lightweight and easy to integrate as a standalone component.\n\n## Installation\n\nInstall the library using npm:\n\n```bash\nnpm install @omnedia/ngx-meteors\n```\n\n## Usage\n\nImport the `NgxMeteorsComponent` in your Angular module or component:\n\n```typescript\nimport {NgxMeteorsComponent} from '@omnedia/ngx-meteors';\n\n@Component({\n  ...\n    imports:\n[\n  ...\n    NgxMeteorsComponent,\n],\n...\n})\n```\n\nUse the component in your template:\n\n```html\n\n\u003com-meteors\n  [meteorColor]=\"'#ffcc00'\"\n  [meteorRotation]=\"'225deg'\"\n  styleClass=\"custom-meteor-class\"\n\u003e\n  \u003ch1\u003eYour content here\u003c/h1\u003e\n\u003c/om-meteors\u003e\n```\n\n## API\n\n```html\n\n\u003com-meteors\n  [meteorColor]=\"meteorColor\"\n  [meteorRotation]=\"meteorRotation\"\n  styleClass=\"your-custom-class\"\n\u003e\n  \u003cng-content\u003e\u003c/ng-content\u003e\n\u003c/om-meteors\u003e\n```\n\n- meteorColor (optional): The color of the meteors. Accepts any valid CSS color value (e.g., #ffcc00, rgba(255, 204, 0, 1)).\n- meteorRotation (optional): The rotation angle for the meteors, determining the direction of their movement. Accepts any valid CSS rotation value (e.g., '225deg').\n- styleClass (optional): A custom CSS class to apply to the component's wrapper element for additional styling.\n\n## Example\n\n```html\n\n\u003com-meteors\n  [meteorColor]=\"'#00ffcc'\"\n  [meteorRotation]=\"'180deg'\"\n  styleClass=\"meteor-background\"\n\u003e\n  \u003cdiv class=\"content\"\u003eThis is a meteor background effect\u003c/div\u003e\n\u003c/om-meteors\u003e\n```\n\nThis will create a meteor shower effect with cyan-colored meteors moving in a downward direction.\n\n## Styling\n\nTo further customize the appearance of the meteors or the container, use the styleClass input to apply your own CSS classes.\n\n```css\n.meteor-background {\n  background-color: #000;\n  height: 100vh;\n  position: relative;\n}\n\n.content {\n  position: relative;\n  z-index: 1;\n  color: white;\n  text-align: center;\n  padding-top: 50px;\n}\n```\n\n## Contributing\n\nContributions are welcome. Please submit a pull request or open an issue to discuss your ideas.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-meteors","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomnedia%2Fngx-meteors","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-meteors/lists"}