上传按钮调整,添加输入提示

This commit is contained in:
ciaochaos 2020-05-19 16:46:50 +08:00
parent 6bfcbb8156
commit c68d35e680
3 changed files with 95 additions and 52 deletions

View File

@ -202,17 +202,50 @@ td {
.Qr-input-upload { .Qr-input-upload {
display: flex; display: flex;
margin-top: calc((10px + 2vmin) * 2);
margin-bottom: calc((10px + 2vmin) * 2);
max-width: calc(100vw - 46px); max-width: calc(100vw - 46px);
width: 20em; 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 { .big-input {
height: calc(2em + 6px); height: calc(2em + 6px);
font-size: calc(10px + 2vmin); font-size: calc(10px + 2vmin);
border: rgba(0,0,0,0.12) solid 2px; border: rgba(0,0,0,0.12) solid 2px;
margin-right: 10px; margin-left: 10px;
flex: 1; flex: 1;
} }
@ -514,6 +547,11 @@ input[type="number"]{
} }
a { 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; color: currentColor;
text-decoration: none; text-decoration: none;
} }

View File

@ -13,7 +13,7 @@ const PartMore = () => (
<h2>这个生成器的特别之处在哪里</h2> <h2>这个生成器的特别之处在哪里</h2>
<p>普通的二维码样式单一不能与环境较好的融合这一个生成器有着 <b>丰富的参数化样式基于 SVG 的二维码生成能力</b> SVG </p> <p>普通的二维码样式单一不能与环境较好的融合这一个生成器有着 <b>丰富的参数化样式基于 SVG 的二维码生成能力</b> SVG </p>
<h2>如何使用</h2> <h2>如何使用</h2>
<p>从输入 URL 开始没有确认框没有额外的页面选择样式后自动更新调整参数后下载即可</p> <p>从输入 URL 开始记得加 http:// 或 https://)。没有确认框,没有额外的页面,选择样式后自动更新,调整参数后下载即可。</p>
<h2>我应该下载 SVG 还是 JPG</h2> <h2>我应该下载 SVG 还是 JPG</h2>
<p>这个工具开发的初衷之一就是便利设计师将其纳入自己的工作流程中SVG 是一个优秀的标准的矢量图片格式各大设计软件如 Adobe IllustratorSketch 等都对 SVG 有着很好的支持用户可以在下载 SVG 后导入这些软件进行二次加工如删除中央的信息点 <b>放入自己的 Logo</b> JPG </p> <p>这个工具开发的初衷之一就是便利设计师将其纳入自己的工作流程中SVG 是一个优秀的标准的矢量图片格式各大设计软件如 Adobe IllustratorSketch 等都对 SVG 有着很好的支持用户可以在下载 SVG 后导入这些软件进行二次加工如删除中央的信息点 <b>放入自己的 Logo</b> JPG </p>
<h2>使用遇到了问题怎么反馈</h2> <h2>使用遇到了问题怎么反馈</h2>

View File

@ -9,19 +9,8 @@ const InputText = ({dispatch}) => {
return ( return (
<React.Fragment> <React.Fragment>
<div className="Qr-input-upload-div">
<div className="Qr-input-upload"> <div className="Qr-input-upload">
<input
className="Qr-input big-input"
placeholder="Input your URL here"
ref={textRef}
onBlur={e => dispatch(genQRInfo(e.target.value))}
onKeyPress={(e) => {
if (e.key === 'Enter') {
dispatch(genQRInfo(e.target.value));
e.target.blur();
}
}}
/>
<label <label
htmlFor="image_scanner" htmlFor="image_scanner"
className="Qr-upload" className="Qr-upload"
@ -58,6 +47,22 @@ const InputText = ({dispatch}) => {
} }
}} }}
/> />
<input
className="Qr-input big-input"
placeholder="https://qrbtf.com"
ref={textRef}
onBlur={e => dispatch(genQRInfo(e.target.value))}
onKeyPress={(e) => {
if (e.key === 'Enter') {
dispatch(genQRInfo(e.target.value));
e.target.blur();
}
}}
/>
</div>
<div className="Qr-input-hint">
上传普通二维码或输入网址
</div>
</div> </div>
</React.Fragment>); </React.Fragment>);
} }