{"id":15617983,"url":"https://github.com/omnedia/ngx-cryptic-text","last_synced_at":"2026-04-01T22:48:53.854Z","repository":{"id":253680385,"uuid":"844179697","full_name":"omnedia/ngx-cryptic-text","owner":"omnedia","description":"A simple component library to animate text. ","archived":false,"fork":false,"pushed_at":"2025-11-29T17:08:47.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-28T00:36:49.710Z","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-18T16:12:21.000Z","updated_at":"2025-12-06T10:53:35.000Z","dependencies_parsed_at":"2025-04-15T02:44:24.141Z","dependency_job_id":"06a9f3cf-9857-4c31-b36d-996d5d3c4b51","html_url":"https://github.com/omnedia/ngx-cryptic-text","commit_stats":null,"previous_names":["omnedia/ngx-cryptic-text"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/omnedia/ngx-cryptic-text","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-cryptic-text","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-cryptic-text/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-cryptic-text/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-cryptic-text/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omnedia","download_url":"https://codeload.github.com/omnedia/ngx-cryptic-text/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-cryptic-text/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"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-10-03T08:00:53.614Z","updated_at":"2026-04-01T22:48:53.837Z","avatar_url":"https://github.com/omnedia.png","language":"TypeScript","funding_links":[],"categories":["Third Party Components","Recently Updated"],"sub_categories":["Animations","[Oct 01, 2024](/content/2024/10/01/README.md)"],"readme":"# ngx-cryptic-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-cryptic-text` is an Angular library that provides a cryptic text animation effect. The component animates text by randomly switching letters until the correct characters appear, creating a mysterious or glitchy effect that can be used for titles, headings, or any text content in your Angular applications.\n\n## Features\n\n- Cryptic text animation effect that gradually resolves into the target text.\n- Customizable animation speed.\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-cryptic-text\n```\n\n## Usage\n\nImport the NgxCrypticTextComponent in your Angular module or component:\n\n```typescript\nimport {NgxCrypticTextComponent} from '@omnedia/ngx-cryptic-text';\n\n@Component({\n  ...\n    imports:\n[\n  ...\n    NgxCrypticTextComponent,\n],\n...\n})\n```\n\nUse the component in your template:\n\n```html\n\n\u003com-cryptic-text\n  [text]=\"'Hello, World!'\"\n  [animationSpeed]=\"1000\"\n  styleClass=\"custom-cryptic-class\"\n\u003e\u003c/om-cryptic-text\u003e\n```\n\n## API\n\n```html\n\n\u003com-cryptic-text\n  [text]=\"text\"\n  [animationSpeed]=\"animationSpeed\"\n  styleClass=\"your-custom-class\"\n\u003e\n\u003c/om-cryptic-text\u003e\n```\n\n- `text` (required): The target text to be revealed by the animation.\n- `animationSpeed` (optional): The duration of the entire animation in milliseconds. Defaults to 800ms.\n- `styleClass` (optional): A custom CSS class to apply to the text element for styling.\n\n## Example\n\n```html\n\n\u003com-cryptic-text\n  [text]=\"'Cryptic Text Effect!'\"\n  [animationSpeed]=\"1200\"\n  styleClass=\"cryptic-text-style\"\n\u003e\u003c/om-cryptic-text\u003e\n```\n\nThis will create a cryptic text animation where the text \"Cryptic Text Effect!\" is gradually revealed over a duration of 1200ms.\n\n## Styling\n\nYou can apply custom styles to the text using the styleClass input. For example:\n\n```css\n.cryptic-text-style {\n  font-size: 24px;\n  color: #ff69b4;\n  font-family: 'Courier New', Courier, monospace;\n}\n```\n\nThis will style the cryptic text with a custom font size, color, 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-cryptic-text","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomnedia%2Fngx-cryptic-text","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-cryptic-text/lists"}