Readme 更新

This commit is contained in:
ciaochaos 2020-05-22 23:40:26 +08:00
parent 0fa1174a9f
commit 0783e6d6cb
2 changed files with 29 additions and 3 deletions

View File

@ -1,3 +1,29 @@
# qrbtf.com # QRBTF
A simple online tool to beautify your QR code. A simple online tool to beautify your QR code.
URL: [qrbtf.com](https://qrbtf.com)
中文介绍: [如何制作一个漂亮的二维码](https://mp.weixin.qq.com/s/_Oy9I9FqPXhfwN9IUhf6_g)
## Installation
``` bash
cd ..
npm install
npm start
```
## Usage
1. Open [qrbtf.com](https://qrbtf.com).
2. Enter a URL or text.
3. Select a style.
4. Adjust parameters.
5. Download `JPG` or `SVG`.
## Examples
![QR code style C2](https://blog.ciaochaos.com/projects/qrcode/qr2.jpg)
![QR codes](https://blog.ciaochaos.com/projects/qrcode/qrs.jpg)

View File

@ -44,7 +44,7 @@ const PartDownload = ({ value, downloadCount, onSvgDownload, onJpgDownload }) =>
</div> </div>
<div> <div>
{ {
imgData.length > 0 ? <div id="dl-image"><div id="dl-image-inner"><img id="dl-image-inner-jpg" src={imgData} alt="点击JPG下载" /></div></div> : null imgData.length > 0 ? <div id="dl-image"><div id="dl-image-inner"><img id="dl-image-inner-jpg" src={imgData} alt="长按保存二维码" /></div></div> : null
} }
</div> </div>
</div> </div>