Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bielefeld-CeBiTec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
2024 Competition
Bielefeld-CeBiTec
Commits
859b009d
Commit
859b009d
authored
5 months ago
by
Maximilian Leo Huber
Browse files
Options
Downloads
Patches
Plain Diff
primeguide anim
parent
aef5a939
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#443226
failed
5 months ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/PrimeGuide.tsx
+336
-0
336 additions, 0 deletions
src/components/PrimeGuide.tsx
src/contents/Home.tsx
+7
-2
7 additions, 2 deletions
src/contents/Home.tsx
with
343 additions
and
2 deletions
src/components/PrimeGuide.tsx
0 → 100644
+
336
−
0
View file @
859b009d
import
{
useEffect
,
useRef
,
useState
}
from
"
react
"
;
export
function
PrimeGuideAnimOne
(){
const
[
isVisible
,
setVisible
]
=
useState
(
false
);
const
domRef
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef
.
current
!
);
},
[]);
const
[
isVisible2
,
setVisible2
]
=
useState
(
false
);
const
domRef2
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible2
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef2
.
current
!
);
},
[]);
const
[
isVisible3
,
setVisible3
]
=
useState
(
false
);
const
domRef3
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible3
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef3
.
current
!
);
},
[]);
const
[
isVisible4
,
setVisible4
]
=
useState
(
false
);
const
domRef4
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible4
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef4
.
current
!
);
},
[]);
const
[
isVisible5
,
setVisible5
]
=
useState
(
false
);
const
domRef5
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible5
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef5
.
current
!
);
},
[]);
return
(
<>
{
/* One */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguideone1.webp"
>
</
img
>
</
div
>
{
/* Two */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible2
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible2
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef2
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguideone2.webp"
>
</
img
>
</
div
>
{
/* Three */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible3
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible3
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef3
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguideone3.webp"
>
</
img
>
</
div
>
{
/* Four */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible4
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible4
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef4
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguideone4.webp"
>
</
img
>
</
div
>
{
/* Five */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible5
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible5
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef5
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguideone5.webp"
>
</
img
>
</
div
>
</>
);
}
export
function
PrimeGuideAnimTwo
(){
const
[
isVisible
,
setVisible
]
=
useState
(
false
);
const
domRef
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef
.
current
!
);
},
[]);
const
[
isVisible2
,
setVisible2
]
=
useState
(
false
);
const
domRef2
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible2
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef2
.
current
!
);
},
[]);
const
[
isVisible3
,
setVisible3
]
=
useState
(
false
);
const
domRef3
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible3
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef3
.
current
!
);
},
[]);
const
[
isVisible4
,
setVisible4
]
=
useState
(
false
);
const
domRef4
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible4
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef4
.
current
!
);
},
[]);
const
[
isVisible5
,
setVisible5
]
=
useState
(
false
);
const
domRef5
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible5
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef5
.
current
!
);
},
[]);
const
[
isVisible6
,
setVisible6
]
=
useState
(
false
);
const
domRef6
=
useRef
(
null
)
!
;
useEffect
(()
=>
{
const
observer
=
new
IntersectionObserver
(
entries
=>
{
entries
.
forEach
(
entry
=>
setVisible6
(
entry
.
isIntersecting
));
});
observer
.
observe
(
domRef6
.
current
!
);
},
[]);
return
(
<>
{
/* One */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguidetwo1.webp"
>
</
img
>
</
div
>
{
/* Two */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible2
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible2
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef2
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguidetwo2.webp"
>
</
img
>
</
div
>
{
/* Three */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible3
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible3
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef3
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguidetwo3.webp"
>
</
img
>
</
div
>
{
/* Four */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible4
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible4
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef4
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguidetwo4.webp"
>
</
img
>
</
div
>
{
/* Five */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible5
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible5
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef5
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguidetwo5.webp"
>
</
img
>
</
div
>
{
/* Six */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
,
'
transition
'
:
'
opacity 0.6s ease-out
'
,
'
opacity
'
:
`
${
isVisible6
?
'
1
'
:
'
0
'
}
`
,
'
visibility
'
:
`
${
isVisible6
?
'
visible
'
:
'
hidden
'
}
`
}
}
ref
=
{
domRef6
}
>
<
img
style
=
{
{
'
position
'
:
'
fixed
'
,
'
top
'
:
'
20vh
'
,
'
left
'
:
'
20vw
'
,
'
width
'
:
'
60vw
'
,
'
height
'
:
'
60vh
'
,
}
}
src
=
"https://static.igem.wiki/teams/5247/landing/primeguide/primeguidetwo6.webp"
>
</
img
>
</
div
>
</>
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/contents/Home.tsx
+
7
−
2
View file @
859b009d
...
...
@@ -2,6 +2,7 @@ import { FadeIn } from "../components/FadeIn";
import
{
Breathe
}
from
"
../components/Breathe
"
;
import
{
Problems
}
from
"
../components/Problems
"
;
import
{
AirbuddyAnim
}
from
"
../components/AirbuddyAnim
"
;
import
{
PrimeGuideAnimOne
,
PrimeGuideAnimTwo
}
from
"
../components/PrimeGuide
"
;
import
{
useTabNavigation
}
from
"
../utils/TabNavigation
"
;
export
function
Home
()
{
...
...
@@ -34,11 +35,15 @@ export function Home() {
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/gifs/treatment-2.gif"
bg
=
''
></
FadeIn
>
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/airbuddy.gif"
bg
=
''
></
FadeIn
>
<
AirbuddyAnim
></
AirbuddyAnim
>
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/precyse.gif"
bg
=
''
></
FadeIn
>
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/airbuddy.gif"
bg
=
''
></
FadeIn
>
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/primeguide.webp"
bg
=
''
></
FadeIn
>
<
PrimeGuideAnimOne
></
PrimeGuideAnimOne
>
<
PrimeGuideAnimTwo
></
PrimeGuideAnimTwo
>
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/precyse.gif"
bg
=
''
></
FadeIn
>
<
FadeIn
filepath
=
"https://static.igem.wiki/teams/5247/landing/gifs/proofofconcept.gif"
bg
=
''
></
FadeIn
>
{
/* Spacing Block */
}
<
div
className
=
'col'
style
=
{
{
'
height
'
:
'
100vh
'
}
}
></
div
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment