質問編集履歴
2
修正いたしました
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,6 +64,46 @@
|
|
64
64
|
|
65
65
|
```HTML
|
66
66
|
|
67
|
+
<!DOCTYPE html>
|
68
|
+
|
69
|
+
<html lang="en">
|
70
|
+
|
71
|
+
<head>
|
72
|
+
|
73
|
+
<meta charset="UTF-8">
|
74
|
+
|
75
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
76
|
+
|
77
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
78
|
+
|
79
|
+
<title>石井花壇|温海温泉旅館【公式サイト】</title>
|
80
|
+
|
81
|
+
<meta name="description" content="日本古来の素材と現代的表現を併せ持つ温泉旅館、石井花壇。伝統的な「和」の息づく空間で、至極のひとときをお過ごしください。">
|
82
|
+
|
83
|
+
<link rel="stylesheet" href="./css/destyle.css">
|
84
|
+
|
85
|
+
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
|
86
|
+
|
87
|
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
88
|
+
|
89
|
+
<!--flatpicker-->
|
90
|
+
|
91
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
|
92
|
+
|
93
|
+
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
|
94
|
+
|
95
|
+
<script src="https://cdn.jsdelivr.net/npm/flatpickr/dist/l10n/ja.js"></script>
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
<link rel="stylesheet" href="./css/style.css">
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
</head>
|
104
|
+
|
105
|
+
<body>
|
106
|
+
|
67
107
|
<section class="history">
|
68
108
|
|
69
109
|
<div class="inner hs-theme">
|
@@ -90,6 +130,24 @@
|
|
90
130
|
|
91
131
|
</section><!-- /.history -->
|
92
132
|
|
133
|
+
<script src="js/jquery-3.6.0.min.js"></script>
|
134
|
+
|
135
|
+
<script type="text/javascript" src="js/slick.min.js"></script>
|
136
|
+
|
137
|
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
138
|
+
|
139
|
+
<!-- 日本語の言語ファイル -->
|
140
|
+
|
141
|
+
<script>flatpickr("#flatpickr", {locale:"ja"});</script>
|
142
|
+
|
143
|
+
<script src="js/script.js"></script>
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
</body>
|
148
|
+
|
149
|
+
</html>
|
150
|
+
|
93
151
|
```
|
94
152
|
|
95
153
|
|
1
修正いたしました
test
CHANGED
File without changes
|
test
CHANGED
@@ -224,6 +224,66 @@
|
|
224
224
|
|
225
225
|
|
226
226
|
|
227
|
+
```Js
|
228
|
+
|
229
|
+
//modarl winodw
|
230
|
+
|
231
|
+
$(function(){
|
232
|
+
|
233
|
+
$('#js-modal').click(function(){
|
234
|
+
|
235
|
+
$('#js-form').fadeIn();
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
});
|
240
|
+
|
241
|
+
});
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
|
246
|
+
|
247
|
+
//Fv slider
|
248
|
+
|
249
|
+
$(function(){
|
250
|
+
|
251
|
+
$('.slider').slick({
|
252
|
+
|
253
|
+
autoplay: true,
|
254
|
+
|
255
|
+
autoplaySpeed: 2000,
|
256
|
+
|
257
|
+
fade: true,
|
258
|
+
|
259
|
+
speed: 1000,
|
260
|
+
|
261
|
+
cssEase: 'linear'
|
262
|
+
|
263
|
+
});
|
264
|
+
|
265
|
+
});
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
//aos
|
270
|
+
|
271
|
+
$(function(){
|
272
|
+
|
273
|
+
AOS.init({
|
274
|
+
|
275
|
+
duration: 2000,
|
276
|
+
|
277
|
+
})
|
278
|
+
|
279
|
+
});
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
```
|
284
|
+
|
285
|
+
|
286
|
+
|
227
287
|
### 試したこと
|
228
288
|
|
229
289
|
https://nandemo-nobiru.com/2944/
|