Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조수연
/
Find_your_own_personal_color
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
이수빈
2020-12-09 02:07:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a7cffbc49ee5dd3c744883531b23b38cf0a25fee
a7cffbc4
1 parent
25f8fb30
test 마지막 수정
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
13 deletions
front/.eslintcache
front/src/season.css
front/src/snow.css
front/src/test.css
front/src/test2.js
front/src/test3.js
front/.eslintcache
View file @
a7cffbc
This diff is collapsed. Click to expand it.
front/src/season.css
View file @
a7cffbc
...
...
@@ -14,9 +14,8 @@
}
.img
{
object-fit
:
cover
;
justify-content
:
center
;
align-items
:
center
;
max-width
:
100%
;
height
:
auto
;
}
@font-face
{
...
...
front/src/snow.css
View file @
a7cffbc
...
...
@@ -4,7 +4,7 @@
}
.snow-flake
{
color
:
rgb
(
255
,
255
,
255
);
animation
:
fall
3.0
s
linear
infinite
;
animation
:
fall
2.5
s
linear
infinite
;
}
@keyframes
fall
{
...
...
front/src/test.css
View file @
a7cffbc
...
...
@@ -77,10 +77,11 @@
}
#test
{
height
:
100vh
;
background-image
:
url("https://source.unsplash.com/random/1920x1080/?color")
;
background-size
:
cover
;
background-repeat
:
no-repeat
;
padding
:
20
%
;
padding
:
12
%
;
text-align
:
center
;
line-height
:
100px
;
font-family
:
"Q"
;
...
...
front/src/test2.js
View file @
a7cffbc
...
...
@@ -83,9 +83,12 @@ const handlePersonalScore_cool = (score_c_s,score_c_w) =>{ //함수2_여쿨, 겨
return
(
<
div
id
=
'test'
>
<
head
>
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
><
/link
>
<
/head
>
{
showScore_c
?
(
<
span
className
=
'score-section'
>
<
button
id
=
"result"
onClick
=
{()
=>
handlePersonalScore_cool
(
score_c_s
,
score_c_w
)}
>
result
<
/button
>
<
button
className
=
"animated infinite pulse"
id
=
"result"
onClick
=
{()
=>
handlePersonalScore_cool
(
score_c_s
,
score_c_w
)}
>
result
<
/button
>
{
num
===
1
?
(
<
div
className
=
"season"
>
{
score
===
"summer cool"
?
(
<
button
id
=
'next'
onClick
=
{
()
=>
{
history
.
push
(
"/summer"
)}}
>
next
<
/button>
)
...
...
@@ -95,9 +98,6 @@ const handlePersonalScore_cool = (score_c_s,score_c_w) =>{ //함수2_여쿨, 겨
<
/span
>
)
:
(
<>
<
head
>
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
><
/link
>
<
/head
>
<
div
className
=
'question-section'
>
<
div
id
=
'question-count'
>
<
span
>
Question
{
currentQuestion_c
+
1
}
<
/span>/
{
questions_cool
.
length
}
...
...
front/src/test3.js
View file @
a7cffbc
...
...
@@ -84,9 +84,12 @@ const handlePersonalScore_warm = (score_w_s,score_w_a) =>{ //함수2_봄, 가을
return
(
<
div
id
=
'test'
>
<
head
>
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
><
/link
>
<
/head
>
{
showScore_w
?
(
<
span
className
=
'score-section'
>
<
button
id
=
"result"
onClick
=
{()
=>
handlePersonalScore_warm
(
score_w_s
,
score_w_a
)}
>
result
<
/button
>
<
button
className
=
"animated infinite pulse"
id
=
"result"
onClick
=
{()
=>
handlePersonalScore_warm
(
score_w_s
,
score_w_a
)}
>
result
<
/button
>
{
num
===
1
?
(
<
div
className
=
"season"
>
{
score
===
"spring warm"
?
(
<
button
id
=
'next'
onClick
=
{
()
=>
{
history
.
push
(
"/spring"
)}}
>
next
<
/button>
)
...
...
@@ -96,9 +99,7 @@ const handlePersonalScore_warm = (score_w_s,score_w_a) =>{ //함수2_봄, 가을
<
/span
>
)
:
(
<>
<
head
>
<
link
rel
=
"stylesheet"
href
=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
><
/link
>
<
/head
>
<
div
className
=
'question-section'
>
<
div
id
=
'question-count'
>
<
span
>
Question
{
currentQuestion_w
+
1
}
<
/span>/
{
questions_warm
.
length
}
...
...
Please
register
or
login
to post a comment