{"id":15618025,"url":"https://github.com/omnedia/ngx-retro-grid","last_synced_at":"2026-03-08T13:32:16.897Z","repository":{"id":253110747,"uuid":"842465088","full_name":"omnedia/ngx-retro-grid","owner":"omnedia","description":"A simple component library to create a container with an animated background. ","archived":false,"fork":false,"pushed_at":"2024-12-12T01:41:09.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-15T02:44:21.395Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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}},"created_at":"2024-08-14T12:07:19.000Z","updated_at":"2024-12-12T01:41:13.000Z","dependencies_parsed_at":"2024-08-14T15:11:17.268Z","dependency_job_id":null,"html_url":"https://github.com/omnedia/ngx-retro-grid","commit_stats":null,"previous_names":["omnedia/ngx-retro-grid"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-retro-grid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-retro-grid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-retro-grid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-retro-grid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omnedia","download_url":"https://codeload.github.com/omnedia/ngx-retro-grid/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248997087,"owners_count":21195797,"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","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-10-03T08:00:54.406Z","updated_at":"2026-03-08T13:32:16.853Z","avatar_url":"https://github.com/omnedia.png","language":"TypeScript","funding_links":[],"categories":["Third Party Components","Recently Updated"],"sub_categories":["Layout","[Oct 01, 2024](/content/2024/10/01/README.md)"],"readme":"# ngx-retro-grid\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-retro-grid` is an Angular library that provides a retro-styled grid background animation for Angular components. This component creates a 3D perspective grid with customizable colors, rotation, and smooth animation, perfect for adding a nostalgic or futuristic visual effect to your application.\n\n## Features\n\n- Retro grid animation with customizable grid color, fade color, and grid rotation.\n- Flexible configuration to match the style 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-retro-grid\n```\n\n## Usage\n\nImport the NgxRetroGridComponent in your Angular module or component:\n\n```typescript\nimport {NgxRetroGridComponent} from '@omnedia/ngx-retro-grid';\n\n@Component({\n  ...\n    imports:\n[\n  ...\n    NgxRetroGridComponent,\n],\n...\n})\n```\n\nUse the component in your template:\n\n```html\n\n\u003com-retro-grid\n  [gridColor]=\"'#ff007f'\"\n  [fadeColor]=\"'#000000'\"\n  [gridRotation]=\"'35deg'\"\n  styleClass=\"custom-class\"\n\u003e\n  \u003ch1\u003eYour content here\u003c/h1\u003e\n\u003c/om-retro-grid\u003e\n```\n\n## API\n\n```html\n\n\u003com-retro-grid\n  [gridColor]=\"gridColor\"\n  [fadeColor]=\"fadeColor\"\n  [gridRotation]=\"gridRotation\"\n  styleClass=\"your-custom-class\"\n\u003e\n  \u003cng-content\u003e\u003c/ng-content\u003e\n\u003c/om-retro-grid\u003e\n```\n\n- gridColor (optional): The color of the grid lines in the background. Accepts a hex color code.\n- fadeColor (optional): The color used for the fading effect in the background. Accepts any valid CSS color value.\n- gridRotation (optional): The rotation angle for the grid. Accepts any valid CSS rotation value (e.g., '35deg', '45deg').\n- styleClass (optional): A custom CSS class to apply to the component's wrapper element.\n\n## Example\n\n```html\n\n\u003com-retro-grid\n  [gridColor]=\"'#00ffcc'\"\n  [fadeColor]=\"'#001f3f'\"\n  [gridRotation]=\"'45deg'\"\n  styleClass=\"example-class\"\n\u003e\n  \u003cdiv class=\"content\"\u003eThis is a retro grid background\u003c/div\u003e\n\u003c/om-retro-grid\u003e\n```\n\nThis will create a retro grid background with a cyan grid, a dark blue fading effect, and a 45-degree rotation for the grid.\n\n## Styling\n\nTo customize the appearance of the grid or the container, use the styleClass input to apply your own CSS classes.\n\n```css\n.example-class {\n  padding: 20px;\n  background-color: rgba(0, 0, 0, 0.8);\n  color: white;\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-retro-grid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomnedia%2Fngx-retro-grid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-retro-grid/lists"}