質問編集履歴
1
htmlの方の追記をいたしました。 よろしくお願いいたします。
title
CHANGED
File without changes
|
body
CHANGED
@@ -24,8 +24,34 @@
|
|
24
24
|
|
25
25
|
|
26
26
|
### 該当のソースコード
|
27
|
+
```html
|
28
|
+
<!doctype html>
|
29
|
+
<html>
|
30
|
+
<head></head>
|
27
31
|
|
28
|
-
|
32
|
+
<body>
|
33
|
+
<?php require_once('header.php') ?>
|
34
|
+
|
35
|
+
<section id="MAIN">
|
36
|
+
<div class="mainview">
|
37
|
+
<div class="main_text"></div>
|
38
|
+
<a href="#about"><span></span></a>
|
39
|
+
</div><!--end mainview-->
|
40
|
+
<div id="about">
|
41
|
+
<div class="title_area"></div>
|
42
|
+
<div class="about_cont"></div><!--end about_cont-->
|
43
|
+
</div>
|
44
|
+
<div id="totop">
|
45
|
+
<a href="/"><img src="img/btn_top.png" alt="TOPへ戻る"></a>
|
46
|
+
</div><!--end totop-->
|
47
|
+
</section><!--end MAIN-->
|
48
|
+
|
49
|
+
<?php require_once('footer.php') ?>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
```
|
53
|
+
|
54
|
+
```js
|
29
55
|
$(function() {
|
30
56
|
var topBtn = $('#totop');
|
31
57
|
topBtn.hide();
|