-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSPAppOnly.html
96 lines (89 loc) · 3.16 KB
/
SPAppOnly.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/vnd.microsoft.icon" href="/favicon.ico">
<link rel="stylesheet" href="/assets/styles/style.css">
</head>
<body>
<!-- ヘッダー -->
<header class="header">
<!--▽▽ヘッダーロゴ▽▽-->
<div class="logo">
<img src="assets/icons/NewLogo_Transparent_56x56.webp" alt="Logo">
</div>
<!--△△ヘッダーロゴ△△-->
<!--▽▽ハンバーガーメニュー▽▽-->
<div id="hamburger">
<div class="icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
<!--△△ハンバーガーメニュー△△-->
<!--▽▽ハンバーガーメニューのリスト▽▽-->
<nav class="sm">
<ul>
<li><a href="">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="/game/">GAMES</a></li>
<li><a href="service.html">SERVICES</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<!--△△ハンバーガーメニューのリスト△△-->
<!--▽▽ヘッダーリスト▽▽-->
<nav class="pc"> <!--pcクラスを追記-->
<ul>
<li><a href="">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="/game/">GAME</a></li>
<li><a href="service.html">SERVICES</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<!--△△ヘッダーリスト△△-->
</header>
<div class="center">
<h1>Welcome! to PescadoGamesLauncher!</h1>
</div>
<div class="center">
<input id="acd-check2" class="acd-check" type="checkbox">
<label class="acd-label" for="acd-check2">サイト変換系</label>
<div class="acd-content">
<!-- 実行ボタン -->
<input type="button" value="一回転" onclick="turn();" />
<!-- 実行ボタン -->
<input type="button" value="五回転" onclick="turn5();" />
<!-- 実行ボタン -->
<input type="button" value="十回転" onclick="turn10();" />
<!-- 実行ボタン -->
<input type="button" value="斜め" onclick="tilt(this);" />
</div>
</div>
<div class="center">
<div class="pc">
<iframe src=https://snapdragon-fixed-rayon.glitch.me width="600" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0">この部分はiframe対応のブラウザでご利用ください</iframe>
</div>
</div>
<div class="center">
<img src="assets/icons/NewLogo_Transparent_56x56.webp" alt="PescadoGames">
<div class="center">
<span class="copyright">copyright(c)2019-2022 PescadoGames All right reserved.</span>
</div>
</div>
<script type="text/javascript" src="/assets/js/script.js" defer></script>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script> <!-- jQueryのファイルの読み込み -->
<script src="/assets/js/fonts.js" async></script>
<script>
$('#hamburger').on('click', function() {
$('.icon').toggleClass('close');
$('.sm').slideToggle();
});
</script>
</body>
</html>