-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from TUS-OSK/dev/ridaisai-2023
いっけー
- Loading branch information
Showing
51 changed files
with
2,882 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.15.0 | ||
16.20.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 2 | ||
} | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import Ridaisai2023 from 'src/pages/Ridaisai2023' | ||
import BreakPointProvider from 'src/pages/Ridaisai2021/breakpoint/Provider' | ||
|
||
export default function Ridaisai2023Page() { | ||
return ( | ||
<> | ||
<Ridaisai2023 /> | ||
</> | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import styled from '@emotion/styled' | ||
import { BOUNCE, CUBIC_OUT, SWIFT } from 'src/utils/animations' | ||
import { fade, flip, pic, T_AROUND, T_COVER, T_FLIP, T_PIC } from '../animations' | ||
|
||
export default function TopBanner() { | ||
return ( | ||
<Banner> | ||
<Image></Image> | ||
<Names></Names> | ||
</Banner> | ||
) | ||
} | ||
|
||
const Banner = styled.div` | ||
position: relative; | ||
z-index: 0; | ||
width: 100%; | ||
height: 100%; | ||
` | ||
|
||
const Image = styled.div` | ||
position: absolute; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
background-image: url('/images/ridaisai/2023/coffee.jpg'); | ||
background-size: cover; | ||
background-position: center; | ||
width: 100%; | ||
animation: | ||
${fade} ${T_PIC}s ${SWIFT} ${T_AROUND}s 1 normal both running, | ||
${pic} ${T_PIC * 0.9}s ${CUBIC_OUT} ${T_AROUND}s 1 normal both running; | ||
` | ||
|
||
function Names() { | ||
return ( | ||
<NamesContainer> | ||
<First>応用</First> | ||
<Second>数学</Second> | ||
<Third>研究部</Third> | ||
<Forth>東京理科大学</Forth> | ||
</NamesContainer> | ||
) | ||
} | ||
|
||
const NamesContainer = styled.div` | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
font-size: 30px; | ||
line-height: 36px; | ||
color: rgba(0, 0, 0, 0.7); | ||
background-color: rgba(255, 255, 255, 0.9); | ||
font-weight: bold; | ||
letter-spacing: 5px; | ||
perspective: 200px; | ||
padding: 40px; | ||
white-space: nowrap; | ||
` | ||
|
||
const Name = styled.div` | ||
margin-bottom: 0; | ||
transform-origin: 50% 0; | ||
` | ||
|
||
const First = styled(Name)` | ||
animation: ${flip} ${T_FLIP}s ${BOUNCE} ${T_COVER}s 1 normal both running; | ||
` | ||
const Second = styled(Name)` | ||
animation: ${flip} ${T_FLIP}s ${BOUNCE} ${T_COVER + T_FLIP * 0.5}s 1 normal both running; | ||
` | ||
const Third = styled(Name)` | ||
margin-bottom: 1px; | ||
animation: ${flip} ${T_FLIP}s ${BOUNCE} ${T_COVER + T_FLIP}s 1 normal both running; | ||
` | ||
|
||
const Forth = styled(Name)` | ||
font-weight: normal; | ||
font-size: 20px; | ||
margin-bottom: 0; | ||
color: rgba(0, 0, 0, 0.4); | ||
letter-spacing: 3px; | ||
animation: ${flip} ${T_FLIP}s ${BOUNCE} ${T_COVER + T_FLIP * 1.5}s 1 normal both running; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import styled from '@emotion/styled' | ||
|
||
export default function Cg() { | ||
return ( | ||
<div> | ||
<Title>CG班</Title> | ||
<DescriptionBox> | ||
<Description> | ||
CG班では主にblender,unityを扱い、3DCG用のモデルを作成したり、VRで遊んだりしています。 | ||
<br /> | ||
3DCGモデリング完全初心者の部員たちがweb上のチュートリアルや、本から学んでいます。 | ||
<br /> | ||
理大祭では今年発売のmeta | ||
quest3のMRを利用し、部員が作成した簡単なアプリケーションや、既製品のアプリケーションを使って、VR、MRの展示を行っています。 | ||
</Description> | ||
</DescriptionBox> | ||
</div> | ||
) | ||
} | ||
|
||
const Title = styled.h1` | ||
font-family: 'novecentosans', sans-serif; | ||
font-size: 2.5em; | ||
line-height: 1.3em; | ||
text-align: center; | ||
|
||
&::after { | ||
content: ''; | ||
display: block; | ||
width: 40px; | ||
border-bottom: solid 2px #5d639e; | ||
margin: 50px auto; | ||
} | ||
` | ||
|
||
const DescriptionBox = styled.div` | ||
margin: 10%; | ||
border-top: 2px solid #aaa; | ||
border-bottom: 2px solid #aaa; | ||
padding: 2em 0; | ||
position: relative; | ||
|
||
&::before, | ||
&::after { | ||
content: ''; | ||
position: absolute; | ||
top: -10px; | ||
width: 2px; | ||
height: -webkit-calc(100% + 20px); | ||
height: calc(100% + 20px); | ||
background-color: #aaa; | ||
} | ||
|
||
&::before { | ||
left: 10px; | ||
} | ||
|
||
&::after { | ||
right: 10px; | ||
} | ||
` | ||
|
||
const Description = styled.div` | ||
margin: 0 3%; | ||
font-size: 1.2em; | ||
text-align: center; | ||
` |
Oops, something went wrong.