{"id":15617990,"url":"https://github.com/omnedia/ngx-shiny-text","last_synced_at":"2025-08-08T01:32:45.808Z","repository":{"id":253940284,"uuid":"844936862","full_name":"omnedia/ngx-shiny-text","owner":"omnedia","description":"A simple component library to animate text.","archived":false,"fork":false,"pushed_at":"2025-06-11T13:16:57.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-11T18:47:14.426Z","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,"zenodo":null}},"created_at":"2024-08-20T09:03:36.000Z","updated_at":"2025-06-11T13:16:14.000Z","dependencies_parsed_at":"2024-08-20T13:34:51.559Z","dependency_job_id":"b0903613-9cd4-4e05-9725-a559922dc5b6","html_url":"https://github.com/omnedia/ngx-shiny-text","commit_stats":null,"previous_names":["omnedia/ngx-shiny-text"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/omnedia/ngx-shiny-text","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-shiny-text","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-shiny-text/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-shiny-text/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-shiny-text/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omnedia","download_url":"https://codeload.github.com/omnedia/ngx-shiny-text/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-shiny-text/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269352444,"owners_count":24402668,"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-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":[],"created_at":"2024-10-03T08:00:53.781Z","updated_at":"2025-08-08T01:32:45.755Z","avatar_url":"https://github.com/omnedia.png","language":"TypeScript","funding_links":[],"categories":["Recently Updated","Third Party Components"],"sub_categories":["[Oct 01, 2024](/content/2024/10/01/README.md)","Animations"],"readme":"# ngx-shiny-text\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-shiny-text` is an Angular library that provides a shimmering text animation effect. This component allows you to easily add a glowing, moving shimmer effect over text, making your text stand out with a visually appealing style.\n\n## Features\n\n- Shimmering animation effect for text.\n- Customizable shimmer color, text color, and shimmer width.\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-shiny-text\n```\n\n## Usage\n\nImport the `NgxShinyTextComponent` in your Angular module or component:\n\n```typescript\nimport {NgxShinyTextComponent} from '@omnedia/ngx-shiny-text';\n\n@Component({\n  ...\n    imports:\n[\n  ...\n    NgxShinyTextComponent,\n],\n...\n})\n```\n\nUse the component in your template:\n\n```html\n\n\u003com-shiny-text\n  [text]=\"'Shiny Text Effect!'\"\n  [shimmerColor]=\"'rgba(255, 255, 255, 0.8)'\"\n  [textColor]=\"'#000'\"\n  [shimmerWidth]=\"'150px'\"\n  styleClass=\"custom-shiny-text\"\n\u003e\u003c/om-shiny-text\u003e\n```\n\n## API\n\n```html\n\n\u003com-shiny-text\n  [text]=\"text\"\n  [shimmerColor]=\"shimmerColor\"\n  [textColor]=\"textColor\"\n  [shimmerWidth]=\"shimmerWidth\"\n  styleClass=\"your-custom-class\"\n\u003e\u003c/om-shiny-text\u003e\n```\n\n- `text` (required): The text content to be displayed with the shimmering effect.\n- `shimmerColor` (optional): The color of the shimmer effect. Accepts any valid CSS color value.\n- `textColor` (optional): The color of the text. Accepts any valid CSS color value.\n- `shimmerWidth` (optional): The width of the shimmer effect in pixels or percentages. Defaults to 100px.\n- `styleClass` (optional): A custom CSS class to apply to the shimmering text element.\n\n## Example\n\n```html\n\n\u003com-shiny-text\n  [text]=\"'Welcome to our site!'\"\n  [shimmerColor]=\"'rgba(255, 215, 0, 0.8)'\"\n  [textColor]=\"'#333'\"\n  [shimmerWidth]=\"'200px'\"\n  styleClass=\"shiny-text-style\"\n\u003e\u003c/om-shiny-text\u003e\n```\n\nThis will create a shimmering text effect where the text \"Welcome to our site!\" is displayed with a golden shimmer and a custom text color.\n\n## Styling\n\nTo customize the appearance of the shimmering text or container, use the styleClass input to apply your own CSS classes.\n\n```css\n.shiny-text-style {\n  font-size: 36px;\n  font-weight: bold;\n  font-family: 'Arial', sans-serif;\n}\n```\n\nThis will style the shimmering text with a custom font size, weight, and font family.\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-shiny-text","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomnedia%2Fngx-shiny-text","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-shiny-text/lists"}