質問編集履歴
1
ご指摘ありがとうございます。body内のscript部分の記述を追記しました。また他のJQueryプラグインも使っているので一応追記しました。他のプラグインは動作しています。
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,6 +42,128 @@
|
|
42
42
|
|
43
43
|
```HTML
|
44
44
|
|
45
|
+
|
46
|
+
|
47
|
+
<!doctype html>
|
48
|
+
|
49
|
+
<html lang="ja">
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
<head>
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
<!-- Google Fonts -->
|
58
|
+
|
59
|
+
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap"
|
60
|
+
|
61
|
+
rel="stylesheet">
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
<!-- Required meta tags -->
|
66
|
+
|
67
|
+
<meta charset="utf-8">
|
68
|
+
|
69
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<!-- Bootstrap CSS -->
|
74
|
+
|
75
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
|
76
|
+
|
77
|
+
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
<!-- Style CSS -->
|
82
|
+
|
83
|
+
<link rel="stylesheet" href="css/styles.css">
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
<!-- Responsive CSS -->
|
88
|
+
|
89
|
+
<link rel="stylesheet" href="css/responsive.css">
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
<!-- Font Awesome -->
|
94
|
+
|
95
|
+
<script src="https://kit.fontawesome.com/48317d2fd7.js" crossorigin="anonymous"></script>
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
<!-- Swiper -->
|
100
|
+
|
101
|
+
<script src="/js/swiper.min.js"></script>
|
102
|
+
|
103
|
+
<link rel="stylesheet" href="/css/swiper.min.css">
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
<!-- wow -->
|
108
|
+
|
109
|
+
<script src="js/wow.min.js"></script>
|
110
|
+
|
111
|
+
<link rel="stylesheet" href="/css/animate.css">
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
<!-- 該当のdrawer要素 -->
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
<!-- drawer.css -->
|
122
|
+
|
123
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/drawer/3.2.2/css/drawer.min.css">
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
<!-- jquery & iScroll -->
|
128
|
+
|
129
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
130
|
+
|
131
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/iScroll/5.2.0/iscroll.min.js"></script>
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
<!-- drawer.js -->
|
136
|
+
|
137
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/drawer/3.2.2/js/drawer.min.js"></script>
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
<!-- ここまで -->
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<!-- smooth-scroll.js -->
|
148
|
+
|
149
|
+
<script src="/js/smooth-scroll.polyfills.min.js"></script>
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
<!-- floating js -->
|
154
|
+
|
155
|
+
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
<title>練習ページ</title>
|
160
|
+
|
161
|
+
</head>
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
45
167
|
<body class="drawer drawer--right">
|
46
168
|
|
47
169
|
|