質問編集履歴

3

追記

2023/03/05 11:07

投稿

yura-asuha
yura-asuha

スコア13

test CHANGED
File without changes
test CHANGED
@@ -86,5 +86,4 @@
86
86
 
87
87
  ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-03-05/7734d468-cd26-4886-a76d-522b2d2a7701.jpeg)
88
88
 
89
- ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-03-05/e7d5e7fa-c945-4c65-bb48-66e68d53ebef.jpeg)
89
+ ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-03-05/c1acad11-3181-4df1-a80b-122975b320b8.jpeg)
90
-

2

追記

2023/03/05 10:46

投稿

yura-asuha
yura-asuha

スコア13

test CHANGED
File without changes
test CHANGED
@@ -86,4 +86,5 @@
86
86
 
87
87
  ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-03-05/7734d468-cd26-4886-a76d-522b2d2a7701.jpeg)
88
88
 
89
+ ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-03-05/e7d5e7fa-c945-4c65-bb48-66e68d53ebef.jpeg)
89
90
 

1

現象追記

2023/03/05 09:31

投稿

yura-asuha
yura-asuha

スコア13

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,8 @@
1
1
  jQueryを使ってfadeInさせたいのですが、fadeInできず困っています。わたしでは、原因がわからなくて対処ができず。
2
+
3
+ 一番下の画像のように、なにも表示されず空白になっています。
4
+ 上下にスライドしても、なにも反応せず。
5
+ ネットで調べても、なにが原因なのかわからず。
2
6
 
3
7
  助けていただけたら、幸いです。
4
8
 
@@ -12,11 +16,17 @@
12
16
  <link rel="stylesheet" href="./css/style.css">
13
17
 
14
18
  <body>
15
- <section class="t">
19
+ <section class="tokushoku">
16
- <div class="to">
20
+ <div class="tokushoku-t">
21
+ <h1>Kira-Kira English</h1>
22
+ <h1>3つの特色</h1>
17
- <div class="box animated"></div>
23
+ <span class="boo"></span>
18
- </div>
24
+ </div>
25
+ <div class="tokushoku1">
26
+ <div class="box1 animated"></div>
27
+ <h1>01.</h1>
28
+ <p>「聞く・話す・読む・書く」の夢中になっている間に「わかる」から「できる」に!</p>
19
- </section>
29
+ </div>
20
30
 
21
31
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
22
32
  <script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js" integrity="sha512-CEiA+78TpP9KAIPzqBvxUv8hy41jyI3f2uHi7DGp/Y/Ka973qgSdybNegWFciqh6GrN2UePx2KkflnQUbUhNIA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
@@ -27,19 +37,41 @@
27
37
  ```
28
38
 
29
39
  ```css
40
+ .tokushoku{
41
+ padding: 80px 16px 80px 16px;
42
+ }
43
+
44
+ .tokushoku-t{
45
+ display: flex;
46
+ flex-direction: column;
47
+ align-items: center;
48
+ row-gap: 10px;
49
+ }
50
+
51
+ .tokushoku h1{
52
+ margin-left: -2px;
53
+ font-size: 24.2px;
54
+ font-weight: bold;
55
+ }
56
+
30
- .to{
57
+ .boo{
58
+ display: inline-block;
59
+ width: 24px;
60
+ height: 2px;
61
+ background-color: #0079f2;
62
+ margin-bottom: 32px;
63
+ }
64
+
65
+ .tokushoku1{
31
66
  height: 100vh;
32
67
  }
33
68
 
34
- .box{
69
+ .box1{
35
70
  width: 357px;
36
71
  height: 269px;
37
72
  background-image: url(../images/final-exam-assets/point/point_1.jpg);
38
73
  }
39
74
 
40
- .animated{
41
- opacity: 0;
42
- }
43
75
  ```
44
76
  ```jquery
45
77
  $('.animated').waypoint({
@@ -51,3 +83,7 @@
51
83
  offset: '50%',
52
84
  });
53
85
  ```
86
+
87
+ ![イメージ説明](https://ddjkaamml8q8x.cloudfront.net/questions/2023-03-05/7734d468-cd26-4886-a76d-522b2d2a7701.jpeg)
88
+
89
+