おそうじ
This commit is contained in:
parent
74db263f8e
commit
dd86a58c5c
@ -1,126 +0,0 @@
|
||||
/* -----------------------------------------------
|
||||
/* How to use? : Check the GitHub README
|
||||
/* ----------------------------------------------- */
|
||||
|
||||
/* To load a config file (particles.json) you need to host this demo (MAMP/WAMP/local)... */
|
||||
/*
|
||||
particlesJS.load('particles-js', 'particles.json', function() {
|
||||
console.log('particles.js loaded - callback');
|
||||
});
|
||||
*/
|
||||
|
||||
/* Otherwise just put the config content (json): */
|
||||
|
||||
particlesJS('particles-js',
|
||||
|
||||
{
|
||||
"particles": {
|
||||
"number": {
|
||||
"value": 80,
|
||||
"density": {
|
||||
"enable": true,
|
||||
"value_area": 800
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"value": "#ffffff"
|
||||
},
|
||||
"shape": {
|
||||
"type": "circle",
|
||||
"stroke": {
|
||||
"width": 0,
|
||||
"color": "#000000"
|
||||
},
|
||||
"polygon": {
|
||||
"nb_sides": 5
|
||||
},
|
||||
"image": {
|
||||
"src": "img/github.svg",
|
||||
"width": 100,
|
||||
"height": 100
|
||||
}
|
||||
},
|
||||
"opacity": {
|
||||
"value": 0.5,
|
||||
"random": false,
|
||||
"anim": {
|
||||
"enable": false,
|
||||
"speed": 1,
|
||||
"opacity_min": 0.1,
|
||||
"sync": false
|
||||
}
|
||||
},
|
||||
"size": {
|
||||
"value": 3,
|
||||
"random": true,
|
||||
"anim": {
|
||||
"enable": false,
|
||||
"speed": 40,
|
||||
"size_min": 0.1,
|
||||
"sync": false
|
||||
}
|
||||
},
|
||||
"line_linked": {
|
||||
"enable": true,
|
||||
"distance": 150,
|
||||
"color": "#ffffff",
|
||||
"opacity": 0.4,
|
||||
"width": 1
|
||||
},
|
||||
"move": {
|
||||
"enable": true,
|
||||
"speed": 6,
|
||||
"direction": "none",
|
||||
"random": false,
|
||||
"straight": false,
|
||||
"out_mode": "out",
|
||||
"bounce": false,
|
||||
"attract": {
|
||||
"enable": false,
|
||||
"rotateX": 600,
|
||||
"rotateY": 1200
|
||||
}
|
||||
}
|
||||
},
|
||||
"interactivity": {
|
||||
"detect_on": "canvas",
|
||||
"events": {
|
||||
"onhover": {
|
||||
"enable": false,
|
||||
"mode": "repulse"
|
||||
},
|
||||
"onclick": {
|
||||
"enable": false,
|
||||
"mode": "push"
|
||||
},
|
||||
"resize": true
|
||||
},
|
||||
"modes": {
|
||||
"grab": {
|
||||
"distance": 400,
|
||||
"line_linked": {
|
||||
"opacity": 1
|
||||
}
|
||||
},
|
||||
"bubble": {
|
||||
"distance": 400,
|
||||
"size": 40,
|
||||
"duration": 2,
|
||||
"opacity": 8,
|
||||
"speed": 3
|
||||
},
|
||||
"repulse": {
|
||||
"distance": 200,
|
||||
"duration": 0.4
|
||||
},
|
||||
"push": {
|
||||
"particles_nb": 4
|
||||
},
|
||||
"remove": {
|
||||
"particles_nb": 2
|
||||
}
|
||||
}
|
||||
},
|
||||
"retina_detect": true
|
||||
}
|
||||
);
|
@ -5,6 +5,7 @@
|
||||
<meta charset="utf-8">
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<title>yude.moe</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: black;
|
||||
|
@ -1,114 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ja">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>yude</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP" rel="stylesheet">
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.1/pure-min.css"
|
||||
integrity="sha256-fPXvMqJjeydW056U7AUM/dp5L+sRz0xPK0Mx3p20nkI=" crossorigin="anonymous" />
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"
|
||||
integrity="sha256-KzZiKy0DWYsnwMF+X1DvQngQ2/FxF7MF3Ff72XcpuPs=" crossorigin="anonymous"></script>
|
||||
<style>
|
||||
body {
|
||||
font-family: "Noto Sans JP";
|
||||
margin-top: 100px;
|
||||
text-align: center;
|
||||
background-color: black
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: black
|
||||
}
|
||||
|
||||
#particles-js canvas {
|
||||
display: block;
|
||||
vertical-align: bottom;
|
||||
-webkit-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
-webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
|
||||
transition: opacity .8s ease, transform 1.4s ease
|
||||
}
|
||||
|
||||
#particles-js {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
z-index: -10;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
@keyframes r1 {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="particles-js"></div>
|
||||
<div class="pure-g" style="margin-bottom:100px">
|
||||
<div class="pure-u-2-24"></div>
|
||||
<div class="pure-g pure-u-20-24"
|
||||
style="box-shadow:0px 0px 6px 3px #b0b0b0;border-radius:6px;background-color:white">
|
||||
<div style="height: 10px"></div>
|
||||
<img src="assets/images/avatar.jpg"
|
||||
style="animation: r1 5s linear infinite;;min-width:64px;max-width:128px;border-radius: 50%;pointer-events: none;">
|
||||
<p style="font-size: 1.5em">yude</p>
|
||||
<p><i class="fas fa-map-marker-alt"></i> Hiroshima, Japan</p>
|
||||
<p style="margin-top: -1em"><i class="fas fa-birthday-cake"></i> November 19th, 2001 <span
|
||||
style="display: inline-block">(18 y/o)</span></p>
|
||||
<p style="margin-top: -1em"><i class="fas fa-school"></i> Hiroshima City Univ.</p>
|
||||
<div style="margin-top: 1em">
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-4-24"></div>
|
||||
<div class="pure-g pure-u-16-24">
|
||||
<div class="pure-u-4-24" style="min-width: 90px">
|
||||
<p><i class="fab fa-discord" style="font-size:1.5em"></i></p>
|
||||
<p style="margin-top: -1em; text-align:center">yude#3205</p>
|
||||
</div>
|
||||
<div class="pure-u-4-24" style="min-width: 90px">
|
||||
<p><i class="fab fa-twitter" style="font-size:1.5em"></i></p>
|
||||
<p style="margin-top: -1em"><a href="https://twitter.com/yudete">@yudete</a></p>
|
||||
</div>
|
||||
<div class="pure-u-4-24" style="min-width: 90px">
|
||||
<p><i class="fab fa-github" style="font-size:1.5em"></i></p>
|
||||
<p style="margin-top: -1em"><a href="https://github.com/yudete">yudete</a></p>
|
||||
</div>
|
||||
<div class="pure-u-4-24" style="min-width: 90px">
|
||||
<p><i class="fas fa-envelope" style="font-size:1.5em"></i></p>
|
||||
<p style="margin-top: -1em"><a href="mailto:yu@yude.moe">yu@yude.moe</a></p>
|
||||
</div>
|
||||
<div class="pure-u-4-24" style="min-width: 90px">
|
||||
<p><i class="fas fa-book" style="font-size:1.5em"></i></p>
|
||||
<p style="margin-top: -1em"><a href="https://blog.yude.moe">yude's blog</a></p>
|
||||
</div>
|
||||
<div class="pure-u-4-24" style="min-width: 90px">
|
||||
<p><i class="fab fa-scrapbox" style="font-size:1.5em"></i></p>
|
||||
<p style="margin-top: -1em"><a href="https://blog.yude.moe">yude's blog</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pure-u-4-24"></div>
|
||||
</div>
|
||||
<p><a href="misc.html">Misc</a></p>
|
||||
<p><a href="https://discord.gg/X6srY7X">yude.moe Discord サーバー</a></p>
|
||||
</div>
|
||||
<div class="pure-u-2-24"></div>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.js"
|
||||
integrity="sha256-icjghcPaibMf1jv4gQIGi5MeWNHem2SispcorCiCfSg=" crossorigin="anonymous"></script>
|
||||
<script src="assets/javascript/app.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
217
public/misc.html
217
public/misc.html
@ -1,217 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ja">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Misc ・ yude</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP" rel="stylesheet">
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.1/pure-min.css"
|
||||
integrity="sha256-fPXvMqJjeydW056U7AUM/dp5L+sRz0xPK0Mx3p20nkI=" crossorigin="anonymous" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"
|
||||
integrity="sha256-KzZiKy0DWYsnwMF+X1DvQngQ2/FxF7MF3Ff72XcpuPs=" crossorigin="anonymous"></script>
|
||||
<style>
|
||||
body {
|
||||
font-family: "Noto Sans JP";
|
||||
margin-top: 20px;
|
||||
margin-left: 50px
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: black
|
||||
}
|
||||
|
||||
li {
|
||||
margin-top: 6px
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: #F4A7B9;
|
||||
color: #D0104C
|
||||
}
|
||||
|
||||
@keyframes r1 {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="contents">
|
||||
<p style="margin-bottom: -10px"><u>リンク</u></p>
|
||||
<ul>
|
||||
<li>Twitter <a href="https://twitter.com/lucknetter"><code>@lucknetter</code></a></li>
|
||||
<li>Twitter <a href="https://twitter.com/yudekey"><code>@yudekey</code></a></li>
|
||||
<li>Twitch <a href="//twitch.tv/yude1119"><code>yude1119</code></a></li>
|
||||
<li>Instagram <a href="//instagram.com/yudemoe"><code>yudemoe</code></a></li>
|
||||
<li>YouTube <a href="//www.youtube.com/c/yudete"><code>c/yudete</code></a></li>
|
||||
<li>Mastodon (mstdn.jp) <a href="//www.youtube.com/c/yudete"><code>c/yudete</code></a>
|
||||
</li>
|
||||
<li>Peing <a href="https://peing.net/yude"><code>yude</code></a></li>
|
||||
<li>Misskey (misskey.io) <a href="https://misskey.io/@yude"><code>@yude</code></a></li>
|
||||
<li>PetitLyrics <a href="https://petitlyrics.com/profile/yude"><code>yude</code></a></li>
|
||||
<li>Last.fm <a href="https://www.last.fm/ja/user/yude_stride"><code>yude_stride</code></a></li>
|
||||
<li>GitLab <a href="https://gitlab.com/yude"><code>yude</code></a></li>
|
||||
<li>pixiv <a href="https://www.pixiv.net/member.php?id=17036889"><code>yude (17036889)</code></a></li>
|
||||
<li>Spotify <a
|
||||
href="https://open.spotify.com/user/yude1119?si=mkpe_gHjSjatWcstDWkKbQ"><code>yude1119</code></a>
|
||||
</li>
|
||||
<li>Annict <a href="https://annict.com/@yude"><code>@yude</code></a></li>
|
||||
<li>Coderwall <a href="https://coderwall.com/yude"><code>yude</code></a></li>
|
||||
<li>ブクログ <a href="https://booklog.jp/users/yudetex/"><code>yudetex</code></a></li>
|
||||
<li>Dailymotion <a href="https://www.dailymotion.com/yude_point"><code>yude_point</code></a></li>
|
||||
<li>Disqus <a href="https://disqus.com/by/yudete/"><code>yudete</code></a></li>
|
||||
<li>Gab <a href="https://gab.com/yude"><code>@yude</code></a></li>
|
||||
<li>Kitsu <a href="https://kitsu.io/users/387191"><code>yude (387191)</code></a></li>
|
||||
<li>MyAnimeList <a href="https://myanimelist.net/profile/yude"><code>yude</code></a></li>
|
||||
<li>plug.dj <a href="https://plug.dj/@/yudecchi"><code>yudecchi</code></a></li>
|
||||
<li>Plays.tv <a href="https://plays.tv/u/yude"><code>yude</code></a></li>
|
||||
<li>Foursquare <a href="https://ja.foursquare.com/yudete"><code>yudete</code></a></li>
|
||||
<li>はてな <a href="http://profile.hatena.ne.jp/yudetex/"><code>yudetex</code></a></li>
|
||||
<li>Qiita <a href="https://qiita.com/yude"><code>yude</code></a></li>
|
||||
<li>Fuwanovel <a
|
||||
href="https://forums.fuwanovel.net/profile/25537-yude1119/"><code>yude1119 (25537)</code></a>
|
||||
</li>
|
||||
<li>進捗ノート <a href="https://shinchoku.net/users/yudete"><code>yudete</code></a></li>
|
||||
<li>itch.io <a href="https://yude.itch.io/"><code>yude</code></a></li>
|
||||
<li>Aeria Games <a href="https://www.aeriagames.com/user/yudetex/"><code>yudetex</code></a></li>
|
||||
<li>CodePen <a href="https://codepen.io/yude/"><code>yude</code></a></li>
|
||||
<li>Greasyfork <a href="https://greasyfork.org/ja/users/217626-yude"><code>yude (217626)</code></a></li>
|
||||
<li>Crowdin <a href="https://crowdin.com/profile/yudecchi"><code>yudecchi</code></a></li>
|
||||
<li>npm <a href="https://www.npmjs.com/~yude"><code>yude</code></a></li>
|
||||
<li>WakaTime <a href="https://wakatime.com/@yude"><code>@yude</code></a></li>
|
||||
<li>Togetter <a href="https://togetter.com/id/yudete"><code>yudete</code></a></li>
|
||||
<li>Speaker Deck <a href="https://speakerdeck.com/yude"><code>yude</code></a></li>
|
||||
<li>Stack Overflow <a href="https://stackoverflow.com/users/11435653/yude"><code>yude (11435653)</code></a>
|
||||
</li>
|
||||
<li>フォト蔵 <a href="http://photozou.jp/user/top/3240087"><code>yude (3240087)</code></a></li>
|
||||
<li>Myspace <a href="https://myspace.com/yudetex"><code>yudetex</code></a></li>
|
||||
<li>TINAMI <a href="http://www.tinami.com/profile/349313"><code>yude (349313)</code></a></li>
|
||||
<li>ATND <a href="https://atnd.org/users/330315"><code>yude (330315)</code></a></li>
|
||||
<li>ASKfm <a href="https://ask.fm/yude_point"><code>yude_point</code></a></li>
|
||||
<li>Goodreads <a href="https://www.goodreads.com/user/show/96709284-yude"><code>yude (96709284)</code></a>
|
||||
</li>
|
||||
<li>Chocolatey <a href="https://chocolatey.org/profiles/yude"><code>yude</code></a></li>
|
||||
<li>Twilog <a href="https://twilog.org/yudete"><code>yudete</code></a></li>
|
||||
<li>reddit <a href="https://www.reddit.com/user/yude1119"><code>yude1119</code></a></li>
|
||||
<li>Vimeo <a href="https://vimeo.com/yude"><code>yude</code></a></li>
|
||||
<li>AtCoder <a href="https://atcoder.jp/users/yude"><code>yude</code></a></li>
|
||||
<li>niconico <a href="https://www.nicovideo.jp/user/22932031"><code>yude (22932031)</code></a></li>
|
||||
<li>Gravatar <a href="https://ja.gravatar.com/yudete"><code>yudete</code></a></li>
|
||||
<li>note <a href="https://note.mu/yude1119"><code>yude1119</code></a></li>
|
||||
<li>SUZURI <a href="https://suzuri.jp/yude"><code>yude</code></a></li>
|
||||
<li>Libre.fm <a href="https://libre.fm/user/yude"><code>yude</code></a></li>
|
||||
<li>Imgur <a href="https://imgur.com/user/yude1119/posts"><code>yude1119</code></a></li>
|
||||
<li>Mixer <a href="https://mixer.com/yude"><code>yude</code></a></li>
|
||||
<li>ふわっち <a href="https://whowatch.tv/profile/w:yude"><code>w:yude</code></a></li>
|
||||
<li>カクヨム <a href="https://kakuyomu.jp/users/yudetex"><code>yudetex</code></a></li>
|
||||
<li>小説家になろう <a href="https://mypage.syosetu.com/1084596/"><code>yude (1084596)</code></a></li>
|
||||
<li>RESUME <a href="https://www.resume.id/yude"><code>yude</code></a></li>
|
||||
<li>Sketchfab <a href="https://sketchfab.com/yude"><code>yude</code></a></li>
|
||||
<li>KnowYourMeme <a href="https://knowyourmeme.com/users/yude1119"><code>yude1119</code></a></li>
|
||||
<li>bilibili <a href="https://space.bilibili.com/446089772"><code>yudetex (446089772)</code></a></li>
|
||||
<li>Mastodon (mast.moe) <a href="https://mast.moe/@yude"><code>@yude</code></a></li>
|
||||
<li>ニジエ <a href="https://nijie.info/members.php?id=1390736"><code>yude (1390736)</code></a></li>
|
||||
<li>Smashcast <a href="https://www.smashcast.tv/yude"><code>yude</code></a></li>
|
||||
<li>Irori <a href="https://irori.app/@yude"><code>@yude</code></a></li>
|
||||
<li>Iwara <a href="https://www.iwara.tv/users/yude"><code>yude</code></a></li>
|
||||
<li>Chordify<a href="https://chordify.net/profile/5d57fef4786de0450000db60"><code>yude</code></a></li>
|
||||
<li>Broadwise <a href="https://broadwise.org/u/yude/"><code>@yude</code></a></li>
|
||||
<li>Webwide <a href="https://webwide.io/members/yude.1568/"><code>yude (1568)</code></a></li>
|
||||
<li>Side Projects <a href="https://sideprojects.net/@yude"><code>@yude</code></a></li>
|
||||
<li>ProductHunt <a href="https://www.producthunt.com/@yudete"><code>@yudete</code></a></li>
|
||||
<li>Indie Hackers <a href="https://www.indiehackers.com/yude"><code>yude</code></a></li>
|
||||
<li>Makerlog <a href="https://getmakerlog.com/@yude"><code>@yude</code></a></li>
|
||||
<li>Dribbble <a href="https://dribbble.com/yudete"><code>yudete</code></a></li>
|
||||
<li>Cent <a href="https://beta.cent.co/@yude"><code>@yude</code></a></li>
|
||||
<li>Minds <a href="https://www.minds.com/yude"><code>yude</code></a></li>
|
||||
</ul>
|
||||
<p>相互リンク</p>
|
||||
<a href="https://koronyan888.github.io/"><img width=234px src="../assets/images/koronyan888.png"
|
||||
alt="ころにゃんのホームページ"></a>
|
||||
<a href="https://taka-impact.github.io/"><img width=234px src="../assets/images/takakun_impact.png"
|
||||
alt="こーげんやさい"></a>
|
||||
<a href="https://exout.net/~kirby3ds/" target="_blank"><img width=234px
|
||||
src="https://exout.net/~kirby3ds/link/bnr/bnr_234x60.png" alt="カービィ★KIRBYの家"></a>
|
||||
<a href="https://pc7342.net/"><img src="https://pc7342.net/banner.png" width=200px height=40px
|
||||
alt="pc7342's Site"></a>
|
||||
<p>
|
||||
yude.moe へのリンクを貼ってくださる方は、下記URLの画像を使用してください。また、このページへの掲載は<a
|
||||
href="https://twitter.com/yudete">Twitter</a>経由で連絡をお願いします。<br>
|
||||
<code>https://yude.moe/banner.png</code></p>
|
||||
<p style="margin-bottom: -10px"><u>プレイ済みゲーム</u></p>
|
||||
<p style="margin-bottom: -10px">主要</p>
|
||||
<ul>
|
||||
<li><a href="https://minecraft.net">Minecraft (Mojang)</a></li>
|
||||
<li><a href="https://osu.ppy.sh">osu! (peppy / Dean Herbert)</a></li>
|
||||
</ul>
|
||||
<p style="margin-bottom: -10px">Steam</p>
|
||||
<ul>
|
||||
<li><a href="http://www.7daystodie.com/">7 Days to Die (The Fun Pimps)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/346110/ARK_Survival_Evolved/?l=japanese">ARK: Survival
|
||||
Evolved
|
||||
(Studio Wildcard)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/360740/Downwell/?l=japanese">Downwell (Ojiro "Moppin"
|
||||
Fumoto)</a></li>
|
||||
<li><a href="https://store.steampowered.com/agecheck/app/242760/?l=japanese">The Forest (Endnight Games)</a>
|
||||
</li>
|
||||
<li><a href="https://store.steampowered.com/app/4000/Garrys_Mod/?l=japanese">Garry's Mod (Facepunch
|
||||
Studios)</a>
|
||||
</li>
|
||||
<li><a href="https://store.steampowered.com/app/657200/Hand_Simulator/">Hand Simulator (HFM Games)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/367580/Hook/?l=japanese">Hook (Maciej Targoni)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/550/Left_4_Dead_2/?l=japanese">Left 4 Dead 2 (Valve
|
||||
Corporation)</a></li>
|
||||
<li><a href="http://nekopara.com/main.html">ネコぱら Vol. 0 (NEKO WORKs)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/218620/PAYDAY_2/?l=japanese">PAYDAY 2 (Overkill
|
||||
Software)</a>
|
||||
</li>
|
||||
<li><a href="https://store.steampowered.com/app/233720/Surgeon_Simulator/?l=japanese">Surgeon Simulator
|
||||
(Bossa
|
||||
Studios)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/105600/Terraria/?l=japanese">Terraria (Re-Logic)</a></li>
|
||||
<li><a href="https://undertale.jp/">UNDERTALE (Toby Fox)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/304930/Unturned/?l=japanese">Unturned (Smartly Dressed
|
||||
Games)</a></li>
|
||||
<li><a href="">What's under your blanket !? (One Game Studio)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/400/Portal/?l=japanese">Portal (Valve Corporation)</a></li>
|
||||
<li><a href="https://store.steampowered.com/app/620/Portal_2/?l=japanese">Portal 2 (Valve Corporation)</a>
|
||||
</li>
|
||||
<li><a href="https://store.steampowered.com/app/493340/Planet_Coaster/?l=japanese">Planet Coaster (Frontier
|
||||
Developments)</a></li>
|
||||
</ul>
|
||||
<p style="margin-bottom: -10px">ノベルゲーム (R-18有)</p>
|
||||
<ul>
|
||||
<li><a href="http://qualia.clearrave.co.jp/top.html">オトメ*ドメイン (ぱれっとクオリア)</a></li>
|
||||
<li><a href="http://www.yuzu-soft.com/new/product/sothewitch/">サノバウィッチ (ゆずソフト)</a></li>
|
||||
<li><a href="http://recette.clearrave.co.jp/">しゅがてん!-sugarfull tempering- (Recette)</a></li>
|
||||
<li><a href="http://palette.clearrave.co.jp/product/sakusaku/">恋がさくころ桜どき (ぱれっと)</a></li>
|
||||
<li><a href="http://palette.clearrave.co.jp/product/mashiro/">ましろ色シンフォニー-Love is pure white- (ぱれっと)</a></li>
|
||||
</ul>
|
||||
<p style="margin-bottom: -10px">東方Project</p>
|
||||
<ul>
|
||||
<li><a href="https://www16.big.or.jp/~zun/html/th07.html">東方妖々夢 〜 Perfect Cherry Blossom. (上海アリス幻樂団)</a>
|
||||
</li>
|
||||
<li><a href="https://www16.big.or.jp/~zun/html/th08top.html">東方永夜抄 〜 Imperishable Night. (上海アリス幻樂団)</a></li>
|
||||
</ul>
|
||||
<p style="margin-bottom: -10px"><u>Special Thanks</u></p>
|
||||
<ul>
|
||||
<li>Favicon / Avatar by <code><a href="https://twitter.com/xmnts">Minkasy</a></code>.</li>
|
||||
<li>Background animation is provided by
|
||||
<code><a href="https://vincentgarreau.com/particles.js/">particles.js</a></code>.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user