This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Canvas #44
Merged
Merged
Canvas #44
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
cbb5b24
add: yataiの装飾(absolute多用はここは許して欲しいです、、、)
Sea10wood 453389e
Add: audioの追加
Sea10wood cf2c730
fix: cspell_checkの追加とタイポ修正
Sea10wood 226bb02
Fix: garellyのタイポ変更
Sea10wood d0083eb
Fix: galleryの変更
Sea10wood 1527433
fix: Galleryのタイポ修正
Sea10wood f9dd6a2
fix: pnpm check
Sea10wood File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,61 @@ | ||
h1{ | ||
font-size: 40px; | ||
} | ||
|
||
.title{ | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
z-index: 1; | ||
padding: 16px; | ||
margin: 0; | ||
} | ||
.nobori img{ | ||
position: absolute; | ||
bottom: 0; | ||
left: -240px; | ||
height: 80vh; | ||
aspect-ratio: 1 / 1; | ||
z-index: -1; | ||
} | ||
|
||
.light img{ | ||
position: absolute; | ||
top: 0; | ||
left: 0px; | ||
height: 80vh; | ||
aspect-ratio: 1 / 1; | ||
z-index: -1; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
align-items: flex-end; | ||
position: absolute; | ||
bottom: 16px; | ||
left: 4vw; | ||
z-index: 1; | ||
} | ||
|
||
.logo img { | ||
height: 16vh; | ||
aspect-ratio: 1 / 1; | ||
margin-right: 2vw; | ||
} | ||
|
||
.shop { | ||
color: var(--white); | ||
font-size: 4vw; | ||
padding: 16px; | ||
margin: 0; | ||
} | ||
|
||
.light-right img{ | ||
position: absolute; | ||
top: 0; | ||
right: 0px; | ||
height: 80vh; | ||
aspect-ratio: 1 / 1; | ||
z-index: -1; | ||
transform: scale(-1, 1); | ||
} |
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,32 @@ | ||
import styles from "./index.module.css"; | ||
|
||
function Garelly() { | ||
return ( | ||
<div> | ||
{/* biome-ignore lint/a11y/useMediaCaption: 夏祭りの音を再生します。 */} | ||
<audio | ||
src="/sound/natsu_matsuri.mp3" | ||
autoPlay | ||
loop | ||
aria-label="夏祭りの音" | ||
/> | ||
<h1 className={styles.title}>VIRTUAL_NATSUMATSURI</h1> | ||
<div className={styles.nobori}> | ||
<img src="/2D_material/nobori.webp" alt="夏祭り_のぼり" /> | ||
</div> | ||
<div className={styles.light}> | ||
<img src="/2D_material/red_small_lite.webp" alt="提灯" /> | ||
</div> | ||
<div className={styles.container}> | ||
<div className={styles.logo}> | ||
<img src="/logo.webp" alt="logo" /> | ||
</div> | ||
<p className={styles.shop}>VIRTUAL_NATSUMATSURI</p> | ||
</div> | ||
<div className={styles["light-right"]}> | ||
<img src="/2D_material/red_small_lite.webp" alt="提灯" /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
export default Garelly; |
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
.canvas { | ||
width: 100%; | ||
height: 100%; | ||
background-color: transparent; | ||
} | ||
|
||
.target { | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
garellyはちゃんとした(?)単語なのでホワイトリストに入れなくても良いと思います