リンク先を一部修正
This commit is contained in:
+3
-3
@@ -6,10 +6,10 @@
|
|||||||
<title><?= ($title == '') ? '' : ($title . ' - ') ?>キケッツチャンネル お絵描き掲示板</title>
|
<title><?= ($title == '') ? '' : ($title . ' - ') ?>キケッツチャンネル お絵描き掲示板</title>
|
||||||
<link rel="stylesheet" href="https://jpafonts.osdn.jp/webfonts/jpafonts.css" />
|
<link rel="stylesheet" href="https://jpafonts.osdn.jp/webfonts/jpafonts.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="/style.css" />
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="./styles/style.css" />
|
||||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" />
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" />
|
||||||
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"></script>
|
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"></script>
|
||||||
<script src="modules/colour-pad.js"></script>
|
<script src="./scripts/colour-pad.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@ -305,7 +305,7 @@
|
|||||||
<script type="text/javascript" src="script.js"></script>
|
<script type="text/javascript" src="script.js"></script>
|
||||||
|
|
||||||
<?php if ($thread != -1): ?>
|
<?php if ($thread != -1): ?>
|
||||||
<script type="text/javascript" src="paint.js"></script>
|
<script type="text/javascript" src="./scripts/paint.js"></script>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
const music = new Audio ('music.mp3'); // BGM
|
const music = new Audio ('./assets/music.mp3'); // BGM
|
||||||
let playing = false; // 再生フラグ
|
let playing = false; // 再生フラグ
|
||||||
let nowPlay = true; // 再生すべきかどぅか
|
let nowPlay = true; // 再生すべきかどぅか
|
||||||
|
|
||||||
document.getElementById ('sort').addEventListener ('change', sortChange);
|
document.getElementById ('sort').addEventListener ('change', sortChange);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user