{"id":18353013,"url":"https://github.com/thecodeholic/lobibox","last_synced_at":"2025-10-25T11:02:30.296Z","repository":{"id":29161314,"uuid":"32691771","full_name":"thecodeholic/lobibox","owner":"thecodeholic","description":"Responsive jQuery notification plugin","archived":false,"fork":false,"pushed_at":"2022-02-03T09:50:02.000Z","size":7300,"stargazers_count":199,"open_issues_count":19,"forks_count":90,"subscribers_count":25,"default_branch":"master","last_synced_at":"2025-07-07T16:41:36.372Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/thecodeholic.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}},"created_at":"2015-03-22T19:37:27.000Z","updated_at":"2025-01-29T19:31:12.000Z","dependencies_parsed_at":"2022-07-17T05:16:07.502Z","dependency_job_id":null,"html_url":"https://github.com/thecodeholic/lobibox","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/thecodeholic/lobibox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobibox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobibox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobibox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobibox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thecodeholic","download_url":"https://codeload.github.com/thecodeholic/lobibox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobibox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280943396,"owners_count":26417747,"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-10-25T02:00:06.499Z","response_time":81,"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-11-05T21:38:10.221Z","updated_at":"2025-10-25T11:02:30.281Z","avatar_url":"https://github.com/thecodeholic.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lobibox\nResponsive jQuery notification plugin written from scratch.\n\n[View Demo](http://lobianijs.com/site/lobibox-responsive-jquery-messagebox-and-notification-plugin-available-for-commercial-and-non-commercial-usages.html)\n\n### Description\n\n##### Lobibox is divided into two parts\n\n- Messageboxes\n- Notifications\n\n#### Messageboxes\n\n*   Lobibox messagesboxes can be modal and not modal\n*   Possibility to show multiple messages\n*   Use any available animation class for showing and hiding messageboxes\n*   Every message can be draggable (On small screens dragging is disabled)\n*   You can show\n    *   **messagesboxes in different colors and icons**\n    *   **confirm message**\n    *   **one line prompt** (Any HTML5 input type can be used in prompt window. Such as: text, color, date, datetime, email, number, range etc)\n    *   **multiline prompt**\n    *   **Progress messagebox**. Lobibox comes with default progress style but you can use bootstrap or any other style progress bar.\n    *   **custom content window with ajax support with custom action buttons**\n*   Every message is an instance of plugin. You can easily grab the instance and attach events or call methods directly on the instance.\n\n#### Notifications\n\n*   Different color support\n*   Possibility to show in any corners of the screen\n*   Delay\n*   Show delay indicator\n*   Show with image\n*   Sound support\n*   Size support. You can show notifications of different size\n\n### Installation and dependecies\n\nLobibox is only depended on jQuery. But for best visual result and icons it's highly recommended to include bootstrap.css \n\n#### 1. Include necessary css/js files\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n   \u003chead\u003e\n      \u003c!--Include this css file in the \u003chead\u003e tag --\u003e\n      \u003clink rel=\"stylesheet\" href=\"bootstrap/dist/css/bootstrap.min.css\"/\u003e\n      \u003clink rel=\"stylesheet\" href=\"dist/css/Lobibox.min.css\"/\u003e\n   \u003c/head\u003e\n   \n   \u003cbody\u003e\n      ...\n      \u003c!--Include these script files in the \u003chead\u003e or \u003cbody\u003e tag--\u003e\n      \u003cscript src=\"lib/jquery.1.11.min.js\"\u003e\u003c/script\u003e\n      \u003cscript src=\"dist/js/Lobibox.min.js\"\u003e\u003c/script\u003e\n      \u003c!-- If you do not need both (messageboxes and notifications) you can inclue only one of them --\u003e\n      \u003c!-- \u003cscript src=\"dist/js/messageboxes.min.js\"\u003e\u003c/script\u003e --\u003e\n      \u003c!-- \u003cscript src=\"dist/js/notifications.min.js\"\u003e\u003c/script\u003e --\u003e\n   \u003c/body\u003e\n\u003c/html\u003e\n```\n\n#### 2. Call plugin method to show messageboxes or notifications\n\n...\n\n### For documentation and examples visit the plugin's [home page](http://lobianijs.com/site/lobibox-responsive-jquery-messagebox-and-notification-plugin-available-for-commercial-and-non-commercial-usages.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodeholic%2Flobibox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthecodeholic%2Flobibox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodeholic%2Flobibox/lists"}