質問編集履歴

7

htmlを実際に出力した形に変更

2021/01/11 14:24

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -44,11 +44,11 @@
44
44
 
45
45
  <!-- 背景用の動画ファイル -->
46
46
 
47
- <video class="workstyle-copy-video" poster="/img/high-five.png" autoplay loop muted >
47
+ <video class="workstyle-copy-video" poster="https://koukoku-unyou.com/wp-content/themes/%E5%BA%83%E5%91%8A%E9%81%8B%E7%94%A8%28Layout-07%29//img/high-five.png" autoplay loop muted >
48
-
48
+
49
- <source src="/img/city.mp4">
49
+ <source src="https://koukoku-unyou.com/wp-content/themes/%E5%BA%83%E5%91%8A%E9%81%8B%E7%94%A8%28Layout-07%29//img/city.mp4">
50
-
50
+
51
- <source src="/img/high-five.mov">
51
+ <source src="https://koukoku-unyou.com/wp-content/themes/%E5%BA%83%E5%91%8A%E9%81%8B%E7%94%A8%28Layout-07%29//img/high-five.mov">
52
52
 
53
53
  </video>
54
54
 

6

cssをわかりやすいように修正

2021/01/11 14:24

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -230,6 +230,8 @@
230
230
 
231
231
 
232
232
 
233
+ //hatenaさんに頂いたコード
234
+
233
235
  .workstyle-copy-wrap {
234
236
 
235
237
  position: relative;

5

htmlの更新

2021/01/11 14:22

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -44,11 +44,11 @@
44
44
 
45
45
  <!-- 背景用の動画ファイル -->
46
46
 
47
- <video class="workstyle-copy-video" poster="<?php echo get_template_directory_uri(); ?>//img/high-five.png" autoplay loop muted >
47
+ <video class="workstyle-copy-video" poster="/img/high-five.png" autoplay loop muted >
48
-
48
+
49
- <source src="<?php echo get_template_directory_uri(); ?>//img/city.mp4">
49
+ <source src="/img/city.mp4">
50
-
50
+
51
- <source src="<?php echo get_template_directory_uri(); ?>//img/high-five.mov">
51
+ <source src="/img/high-five.mov">
52
52
 
53
53
  </video>
54
54
 

4

css更新

2021/01/11 14:19

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -230,4 +230,26 @@
230
230
 
231
231
 
232
232
 
233
+ .workstyle-copy-wrap {
234
+
235
+ position: relative;
236
+
237
+ }
238
+
239
+
240
+
241
+ .workstyle-copy-title {
242
+
243
+ position: absolute;
244
+
245
+ top: 50%;
246
+
247
+ left: 50%;
248
+
249
+ -webkit-transform: translate(-50%, -50%);
250
+
251
+ transform: translate(-50%, -50%);
252
+
253
+ }
254
+
233
- ```
255
+ ```

3

htmlとcssの更新

2021/01/11 13:52

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -34,7 +34,43 @@
34
34
 
35
35
 
36
36
 
37
-
37
+ 【更新】
38
+
39
+ ```
40
+
41
+ <section class="workstyle-copy">
42
+
43
+ <div class="workstyle-copy-wrap">
44
+
45
+ <!-- 背景用の動画ファイル -->
46
+
47
+ <video class="workstyle-copy-video" poster="<?php echo get_template_directory_uri(); ?>//img/high-five.png" autoplay loop muted >
48
+
49
+ <source src="<?php echo get_template_directory_uri(); ?>//img/city.mp4">
50
+
51
+ <source src="<?php echo get_template_directory_uri(); ?>//img/high-five.mov">
52
+
53
+ </video>
54
+
55
+ <!-- オーバーレイ -->
56
+
57
+ <div class="overlay"></div>
58
+
59
+ <!-- 背景の上に表示させたいコンテンツ -->
60
+
61
+ <div class="workstyle-copy-title">
62
+
63
+ <p>Be Simple</p>
64
+
65
+ </div>
66
+
67
+ </div>
68
+
69
+ </section>
70
+
71
+
72
+
73
+ ```
38
74
 
39
75
  ```
40
76
 
@@ -72,8 +108,6 @@
72
108
 
73
109
  .workstyle-copy-wrap {
74
110
 
75
- max-width: 1140px;
76
-
77
111
  margin: 0 auto;
78
112
 
79
113
  overflow: hidden;
@@ -186,7 +220,7 @@
186
220
 
187
221
  font-family: 'Pacifico', cursive;
188
222
 
189
- font-size: 240px;
223
+ font-size: 14vw;
190
224
 
191
225
  color: rgba(68, 255, 0, 0.9);
192
226
 

2

cssの更新、画像の追加

2021/01/11 13:47

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,8 @@
1
1
  https://koukoku-unyou.com/recruit/
2
2
 
3
3
  上記のメインビジュアル部分についての質問です。
4
+
5
+ 【Q1】
4
6
 
5
7
  https://qiita.com/Shinji-m/items/69a392685699f3ba95fb
6
8
 
@@ -19,6 +21,14 @@
19
21
  padding-topとレスポンシブで無理やり中央っぽいところに配置は出来るのですが、
20
22
 
21
23
  なるべく自動で中央に配置出来るようにしたいです。
24
+
25
+ 【Q2】
26
+
27
+ あとなぜかテキストの下の部分が一部欠けてしまいます。
28
+
29
+ ![イメージ説明](98e630557078654f56ba0ddfad599790.png)
30
+
31
+
22
32
 
23
33
  お手数ですがよろしくお願いします。
24
34
 
@@ -152,8 +162,6 @@
152
162
 
153
163
  display: flex;
154
164
 
155
- width: 50%;
156
-
157
165
  -webkit-box-pack: center;
158
166
 
159
167
  -ms-flex-pack: center;
@@ -178,7 +186,7 @@
178
186
 
179
187
  font-family: 'Pacifico', cursive;
180
188
 
181
- font-size: 54px;
189
+ font-size: 240px;
182
190
 
183
191
  color: rgba(68, 255, 0, 0.9);
184
192
 

1

修正

2021/01/11 09:40

投稿

takawork
takawork

スコア95

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ```
16
16
 
17
- などでうまく行きませんでした。
17
+ などでうまく行きませんでした。(載ってるものを全部試しましたが、うまく行きませんでした。)
18
18
 
19
19
  padding-topとレスポンシブで無理やり中央っぽいところに配置は出来るのですが、
20
20