回答編集履歴
2
サンプルリンク追加
test
CHANGED
@@ -43,3 +43,7 @@
|
|
43
43
|
});
|
44
44
|
|
45
45
|
```
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
[CodePen サンプル](https://codepen.io/hatena19/pen/GRqJRWO)
|
1
コード修正
test
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
変数名が間違ってる。
|
2
|
+
|
3
|
+
|
4
|
+
|
1
5
|
```js
|
2
6
|
|
3
7
|
jQuery(function() {
|
@@ -8,10 +12,34 @@
|
|
8
12
|
|
9
13
|
topBtn.hide();
|
10
14
|
|
15
|
+
$(window).scroll(function() {
|
11
16
|
|
17
|
+
if($(this).scrollTop() > 100) {
|
12
18
|
|
13
|
-
|
19
|
+
topBtn.fadeIn();
|
14
20
|
|
21
|
+
} else {
|
15
22
|
|
23
|
+
topBtn.fadeOut();
|
24
|
+
|
25
|
+
}
|
26
|
+
|
27
|
+
});
|
28
|
+
|
29
|
+
// pagetop.click(function(){ ここも間違い。以下に修正
|
30
|
+
|
31
|
+
topBtn.click(function(){
|
32
|
+
|
33
|
+
$('body,html').animate({
|
34
|
+
|
35
|
+
scrollTop: 0
|
36
|
+
|
37
|
+
}, 500);
|
38
|
+
|
39
|
+
return false;
|
40
|
+
|
41
|
+
});
|
42
|
+
|
43
|
+
});
|
16
44
|
|
17
45
|
```
|