From c68d35e6801fc23196776932d990544cee6fe886 Mon Sep 17 00:00:00 2001 From: ciaochaos <1272777550@qq.com> Date: Tue, 19 May 2020 16:46:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=8C=89=E9=92=AE=E8=B0=83?= =?UTF-8?q?=E6=95=B4=EF=BC=8C=E6=B7=BB=E5=8A=A0=E8=BE=93=E5=85=A5=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Qrcode.css | 44 +++++++++++++- src/components/app/PartMore.js | 2 +- src/containers/app/InputText.js | 101 +++++++++++++++++--------------- 3 files changed, 95 insertions(+), 52 deletions(-) diff --git a/src/components/Qrcode.css b/src/components/Qrcode.css index c56ba93..0a06833 100644 --- a/src/components/Qrcode.css +++ b/src/components/Qrcode.css @@ -202,17 +202,50 @@ td { .Qr-input-upload { display: flex; - margin-top: calc((10px + 2vmin) * 2); - margin-bottom: calc((10px + 2vmin) * 2); max-width: calc(100vw - 46px); width: 20em; } +.Qr-input-upload-div { + margin-top: calc((5px + 2vmin) * 2); + margin-bottom: calc((10px + 2vmin + 10px) * 2); + position: relative; +} + +.Qr-input-upload:hover + .Qr-input-hint { + opacity: 0.6; + -webkit-transition-duration: 0.2s; /* Safari */ + -moz-animation-duration: 0.2s; + transition-duration: 0.2s; +} + +.Qr-input-hint { + opacity: 0; + margin-top: 12px; + font-size: 12px; + position: absolute; + left: 0; + z-index: 1; + -webkit-transition-timing-function: ease-in-out; + -moz-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; + -webkit-transition-duration: 0.3s; /* Safari */ + -moz-animation-duration: 0.3s; + transition-duration: 0.3s; +} + +@media (min-width: 500px) { + .Qr-input-hint { + margin-top: 14px; + font-size: 14px; + } +} + .big-input { height: calc(2em + 6px); font-size: calc(10px + 2vmin); border: rgba(0,0,0,0.12) solid 2px; - margin-right: 10px; + margin-left: 10px; flex: 1; } @@ -514,6 +547,11 @@ input[type="number"]{ } a { + -webkit-appearance: none; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + -moz-appearance: none; + -moz-text-size-adjust: 100%; color: currentColor; text-decoration: none; } diff --git a/src/components/app/PartMore.js b/src/components/app/PartMore.js index 09bb09b..1c10482 100644 --- a/src/components/app/PartMore.js +++ b/src/components/app/PartMore.js @@ -13,7 +13,7 @@ const PartMore = () => (

这个生成器的特别之处在哪里?

普通的二维码样式单一,不能与环境较好的融合。这一个生成器有着 丰富的参数化样式、基于 SVG 的二维码生成能力,在为我们提供精美样式的同时,不限制参数如数值、颜色、背景图片的选择,又因 SVG 有较好的拓展性,可以完美兼容矢量制图流程。

如何使用?

-

从输入 URL 开始。没有确认框,没有额外的页面,选择样式后自动更新,调整参数后下载即可。

+

从输入 URL 开始(记得加 http:// 或 https://)。没有确认框,没有额外的页面,选择样式后自动更新,调整参数后下载即可。

我应该下载 SVG 还是 JPG?

这个工具开发的初衷之一就是便利设计师将其纳入自己的工作流程中。SVG 是一个优秀的、标准的矢量图片格式,各大设计软件如 Adobe Illustrator、Sketch 等都对 SVG 有着很好的支持。用户可以在下载 SVG 后导入这些软件进行二次加工,如删除中央的信息点 放入自己的 Logo 等。如果需要直接分享二维码图像,请直接下载 JPG 格式。

使用遇到了问题,怎么反馈?

diff --git a/src/containers/app/InputText.js b/src/containers/app/InputText.js index 5f0eb43..e4d6faf 100644 --- a/src/containers/app/InputText.js +++ b/src/containers/app/InputText.js @@ -9,55 +9,60 @@ const InputText = ({dispatch}) => { return ( -
- dispatch(genQRInfo(e.target.value))} - onKeyPress={(e) => { - if (e.key === 'Enter') { - dispatch(genQRInfo(e.target.value)); - e.target.blur(); - } - }} - /> - - e.target.value = null} - onChange={(e) => { - if (e.target.files.length > 0) { - const file = e.target.files[0]; - if (isPicture(file)) { - decodeData(file).then((res) => { - if (res) { - textRef.current.value = res.data; - console.log(res.data) - dispatch(genQRInfo(res.data)) - } - }).catch(console.err); +
+
+ + e.target.value = null} + onChange={(e) => { + if (e.target.files.length > 0) { + const file = e.target.files[0]; + if (isPicture(file)) { + decodeData(file).then((res) => { + if (res) { + textRef.current.value = res.data; + console.log(res.data) + dispatch(genQRInfo(res.data)) + } + }).catch(console.err); + } } - } - }} - /> + }} + /> + dispatch(genQRInfo(e.target.value))} + onKeyPress={(e) => { + if (e.key === 'Enter') { + dispatch(genQRInfo(e.target.value)); + e.target.blur(); + } + }} + /> +
+
+ 上传普通二维码或输入网址 +
); }