Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCheck
design
Commits
c6486df4
Commit
c6486df4
authored
3 years ago
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RFIDボタン追加
parent
8f311eaa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
1 deletions
+56
-1
app/css/app.css
+35
-0
app/index.html
+10
-1
app/script/check.js
+11
-0
No files found.
app/css/app.css
View file @
c6486df4
...
...
@@ -20162,6 +20162,41 @@ button {
transition: .3s
}
.scan-overlay {
left: 0;
width: 100%;
top: 0;
height: calc(100%);
display: block;
position: absolute;
background: #000;
opacity: .5;
z-index: 1031;
transition: .3s
}
.scan-area {
border-radius: 15px;
z-index: 1032;
height: calc(40%);
width: 60%;
position: absolute;
top: 10%;
left: 20%;
background-color: white;
}
.loading-spinner {
margin-left: 33%;
margin-top: 10%;
color: lightslategray;
}
.loading-close {
margin-top: 3%;
margin-left: 85%;
}
.overlay.open {
width: 100%
}
...
...
This diff is collapsed.
Click to expand it.
app/index.html
View file @
c6486df4
...
...
@@ -24,6 +24,10 @@
<i
class=
"fa fa-folder fs-12 p-1"
id=
"category-toggle-button"
></i>
<span
class=
"d-none d-md-inline fs-10"
>
カテゴリー
</span>
</a>
<a
class=
"navbar-brand lht-0"
href=
"#"
style=
"margin:0px"
>
<i
class=
"fa fa-wifi fs-12 p-1"
id=
"rfidScanButton"
onclick=
"CHK.startScan();"
></i>
<span
class=
"d-none d-md-inline fs-10"
>
スキャン
</span>
</a>
</nav>
</header>
...
...
@@ -161,7 +165,12 @@
</nav>
</footer>
<div
class=
"scan-overlay d-none"
></div>
<div
class=
"scan-area d-none"
>
<i
class=
"text-right fas fa-times fa-2x loading-close"
onclick=
"CHK.scanClose();"
></i>
<i
class=
"fas fa-spinner fa-5x fa-spin loading-spinner"
></i>
<div
class=
"fs-13 mt-4 text-center"
>
読み込み中
</div>
</div>
<script
type=
"text/javascript"
src=
"js/app.js"
defer
></script>
</body>
...
...
This diff is collapsed.
Click to expand it.
app/script/check.js
View file @
c6486df4
...
...
@@ -2906,4 +2906,14 @@ CHK.changeOperationGroupMaster = function(operationGroupMasterId) {
CHK
.
operationGroupMasterId
=
operationGroupMasterId
;
CHK
.
createCategory
(
CHK
.
operationGroupMaster
.
operationGroupMasterList
);
CHK
.
search
();
}
CHK
.
startScan
=
function
()
{
$
(
".scan-overlay"
).
removeClass
(
"d-none"
);
$
(
".scan-area"
).
removeClass
(
"d-none"
);
}
CHK
.
scanClose
=
function
()
{
$
(
".scan-overlay"
).
addClass
(
"d-none"
);
$
(
".scan-area"
).
addClass
(
"d-none"
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment