{"id":23726580,"url":"https://github.com/codenkoffee/html-framify-website","last_synced_at":"2026-01-25T13:31:38.408Z","repository":{"id":179742664,"uuid":"663974539","full_name":"CodeNKoffee/html-framify-website","owner":"CodeNKoffee","description":"About Modern, versatile, and seamless image navigation for captivating device framesets in ReactJS and ReactTS apps.","archived":false,"fork":false,"pushed_at":"2024-07-05T09:52:53.000Z","size":126,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-30T20:14:19.379Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://react-framify.netlify.app/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CodeNKoffee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-07-08T15:24:30.000Z","updated_at":"2024-07-05T09:52:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"2afa84fb-03a2-46d8-b5e9-eede755ea6b8","html_url":"https://github.com/CodeNKoffee/html-framify-website","commit_stats":null,"previous_names":["codenkoffee/html-framify-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CodeNKoffee/html-framify-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeNKoffee%2Fhtml-framify-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeNKoffee%2Fhtml-framify-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeNKoffee%2Fhtml-framify-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeNKoffee%2Fhtml-framify-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodeNKoffee","download_url":"https://codeload.github.com/CodeNKoffee/html-framify-website/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeNKoffee%2Fhtml-framify-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-12-31T00:32:19.243Z","updated_at":"2026-01-25T13:31:38.391Z","avatar_url":"https://github.com/CodeNKoffee.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Framify - Image Navigation for Device Framesets\n\n**Framify** is a lightweight JavaScript library that simplifies the process of showcasing screenshots and images within device framesets. It provides a user-friendly way to present your application or website visuals without the need for complex component libraries.\n\n## Features\n\n* **Supports various device framesets:** Customize the appearance using CSS to match your desired device frames (e.g., phones, tablets).\n* **Enables navigation between multiple screenshots/images:** Users can easily navigate through a collection of screenshots or images within the frame.\n* **(Optional) Touch swipe gestures for mobile browsing:** Enhance the user experience on mobile devices by allowing users to swipe through images. (Implementation details depend on your chosen approach)\n* **Easy integration with vanilla HTML, CSS, and JS:** Framify seamlessly integrates with your existing project structure, requiring minimal code changes.\n\n## Installation\n\n1. Download the Framify library files (HTML, CSS, JS) from the project repository (link to be provided).\n2. Include the downloaded files in your project directory:\n\n   ```bash\n   project-directory/\n     framify.html\n     framify.css\n     framify.js\n     // Your other project files\n   ```\n\n## Usage\n\nHere's a basic example of how to use Framify in your HTML project:\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n  \u003ctitle\u003eMy Project Screenshots\u003c/title\u003e\n  \u003clink rel=\"stylesheet\" href=\"framify.css\"\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003cdiv class=\"framify-container\"\u003e\n    \u003cimg src=\"screenshot1.png\" alt=\"Screenshot 1\"\u003e\n    \u003cimg src=\"screenshot2.png\" alt=\"Screenshot 2\"\u003e\n    \u003cimg src=\"screenshot3.png\" alt=\"Screenshot 3\"\u003e\n  \u003c/div\u003e\n  \u003cscript src=\"framify.js\"\u003e\u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\nThis code includes the Framify CSS and JS files and creates a container with your screenshots. You can customize the styles and behavior using CSS and vanilla JS.\n\n## License\n\n(Specify the license under which Framify is distributed. Common open-source licenses include MIT, Apache-2.0, etc.)\n\n**Note:**\n\n* This README provides a basic structure. You can expand on each section with more details, code examples, and customization options.\n* Implement the touch swipe gestures functionality based on your preferred approach (e.g., vanilla JS or a separate library).\n* Include links to the project repository and any relevant documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodenkoffee%2Fhtml-framify-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodenkoffee%2Fhtml-framify-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodenkoffee%2Fhtml-framify-website/lists"}