質問編集履歴
1
ソースコードの記入漏れがあったので追記修正。javascriptは記入しきれなかったのでリンクをつけました
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,3 +11,127 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
これを解決し、ウィンドウサイズに収める方法はないものでしょうか
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```HTML
|
18
|
+
|
19
|
+
<!doctype html>
|
20
|
+
|
21
|
+
<html lang="ja">
|
22
|
+
|
23
|
+
<head>
|
24
|
+
|
25
|
+
<meta charset="UTF-8">
|
26
|
+
|
27
|
+
<title>【jQuery】bgSwitcherのデモページ1</title>
|
28
|
+
|
29
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
30
|
+
|
31
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
|
36
|
+
|
37
|
+
<script src="js/jquery.bgswitcher.js"></script>
|
38
|
+
|
39
|
+
<script>
|
40
|
+
|
41
|
+
jQuery(function($) {
|
42
|
+
|
43
|
+
$('.bg-slider').bgSwitcher({
|
44
|
+
|
45
|
+
images: ['img/bg1.jpg','img/bg2.jpg','img/bg3.jpg'], // 切り替える背景画像を指定します。
|
46
|
+
|
47
|
+
});
|
48
|
+
|
49
|
+
});
|
50
|
+
|
51
|
+
</script>
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
<style type="text/css">
|
56
|
+
|
57
|
+
body{margin:0}
|
58
|
+
|
59
|
+
.bg-slider {
|
60
|
+
|
61
|
+
width: 100vw;
|
62
|
+
|
63
|
+
height: 100vh;
|
64
|
+
|
65
|
+
background-position:center center;
|
66
|
+
|
67
|
+
background-size: cover;
|
68
|
+
|
69
|
+
display: flex;
|
70
|
+
|
71
|
+
align-items: center;
|
72
|
+
|
73
|
+
justify-content: center;
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
.bg-slider__title{
|
78
|
+
|
79
|
+
color: #fff;
|
80
|
+
|
81
|
+
font-size: 48px;
|
82
|
+
|
83
|
+
line-height: 1.5;
|
84
|
+
|
85
|
+
text-align:center;
|
86
|
+
|
87
|
+
text-shadow: 1px 1px 1px #000;
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
</style>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
</head>
|
98
|
+
|
99
|
+
<body>
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
<h1>ふるさとは食卓に。</h1>
|
104
|
+
|
105
|
+
<h2>今日もすこやかに、元気に。毎日のごはんと一緒に。</h2>
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
<div class="bg-slider">
|
110
|
+
|
111
|
+
<h1 class="bg-slider__title">BGSWITCHER DEMO PAGE<br>【DEFAULT】</h1>
|
112
|
+
|
113
|
+
</div>
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
</body>
|
128
|
+
|
129
|
+
</html>
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
```
|
134
|
+
|
135
|
+
javascriptはコードが長すぎて記入できなかったのでお手数ですがこちらから確認をお願いいたします
|
136
|
+
|
137
|
+
[リンク](https://raw.githubusercontent.com/rewish/jquery-bgswitcher/master/jquery.bgswitcher.js)
|