{"id":17002832,"url":"https://github.com/neilime/mooqrcode","last_synced_at":"2025-03-22T09:22:23.560Z","repository":{"id":5459630,"uuid":"6654459","full_name":"neilime/MooQRCode","owner":"neilime","description":"Mootools standalone qrcode generation ","archived":false,"fork":false,"pushed_at":"2019-10-30T09:20:38.000Z","size":259,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-27T09:22:20.659Z","etag":null,"topics":["javascript","mootools","qrcode"],"latest_commit_sha":null,"homepage":"http://neilime.github.io/MooQRCode/","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/neilime.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["neilime"]}},"created_at":"2012-11-12T14:19:55.000Z","updated_at":"2019-10-30T09:20:39.000Z","dependencies_parsed_at":"2022-09-08T23:31:15.426Z","dependency_job_id":null,"html_url":"https://github.com/neilime/MooQRCode","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neilime%2FMooQRCode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neilime%2FMooQRCode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neilime%2FMooQRCode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neilime%2FMooQRCode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neilime","download_url":"https://codeload.github.com/neilime/MooQRCode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244933031,"owners_count":20534279,"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":["javascript","mootools","qrcode"],"created_at":"2024-10-14T04:29:10.299Z","updated_at":"2025-03-22T09:22:23.540Z","avatar_url":"https://github.com/neilime.png","language":"JavaScript","funding_links":["https://github.com/sponsors/neilime"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/neilime/easy-win-setup\" target=\"_blank\"\u003e\u003cimg src=\"https://repository-images.githubusercontent.com/6654459/b6fa3980-fafe-11e9-8b37-4435e5b9d5c3\" width=\"600\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n[![GitHub stars](https://img.shields.io/github/stars/neilime/MooQRCode)](https://github.com/neilime/MooQRCode)\n[![License](https://img.shields.io/github/license/neilime/MooQRCode)](LICENSE)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)\n[![Sponsor](https://img.shields.io/badge/%E2%9D%A4-Sponsor-ff69b4)](https://github.com/sponsors/neilime) \n\nMooQrCode is a mootools plugin that allow you to create qrcode.\nIt is based on QR Code Generator for JavaScript by http://www.d-project.com/\n\nNow look at an [example](http://neilime.github.com/MooQRCode/exemple.html).\n\n# Helping Project\n\n❤️ If this project helps you reduce time to develop and/or you want to help the maintainer of this project. You can [sponsor](https://github.com/sponsors/neilime) him. Thank you !\n\n# Contributing\n\n👍 If you wish to contribute to TwbsHelper, PRs are welcome! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file.\n\n# How to use\n\n🚀 (Fast \u0026 Easy)\n\n* First, include required js files (Mootools \u0026 MooQrCode)\n```html\n\u003cscript type=\"text/javascript\" src=\"mootools.core.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\" src=\"mooqrcode.min.js\"\u003e\u003c/script\u003e\n```\n* Then create a container for the QRCode\n```html\n\u003cdiv id=\"QR_black\"\u003e\u003c/div\u003e\n```\n* Let the script do the job \n```js\ndocument.id(window).addEvent('domready',function(){\t\t\t\t\n    document.id('QR_black').qrCode({'width':50,'height':50,'value':'This is an encrypted value'});\n});\n```\n* That's all !\n\n# Class: MooQrCode\n\n## Syntax\n\n```js\nvar oQrCode = new MooQRCode([options]);\n```\n\n## Arguments\n\n1. options: (*object*, optional) The options object\n\n### Options:\n\n- value : (*string*, defaults to `null`) The value to be encrypted into QRCode.\n- typeNumber: (*int*, defaults to `-1`) 1 to 10, if typeNumber \u003c 1, it will be calculate automatically, else higher the type number, more data can be stored.\n- correctLevel: (*int*, defaults to `2`) error Correct Level :\n  - M: 0\n  - L: 1\n  - H: 2\n  - Q: 3\n- width: (*int*, defaults to `256`) QR Code width.\n- height: (*int*, defaults to `256`) QR Code height.\n- render: (*string*, defaults to `canvas`) rendering mode, canvas or table.\n- color: (*string*, defaults to `#000000`) QR Code color.\n- backgroundColor: (*string*, defaults to `#FFFFFF`) QR Code background color.\n- container: (*HTMLElement*, *string*, defaults to `null`) Qr Code container element.\n\n## Events:\n\n- onQrCodeReady: Will be fired when the QR Code is ready (after rendrering)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneilime%2Fmooqrcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneilime%2Fmooqrcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneilime%2Fmooqrcode/lists"}