質問編集履歴
1
文法の修正。
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,21 +2,17 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
ここに質問の内容を詳しく書いてください。
|
6
|
-
|
7
|
-
(例)PHP(CakePHP)で●●なシステムを作っています。
|
8
|
-
|
9
|
-
|
5
|
+
videoを横いっぱいに縦にheight: 200px;ほどの大きさで表示させたい。
|
10
6
|
|
11
7
|
|
12
8
|
|
13
|
-
###
|
9
|
+
### width: 100%;を適用させるとvideoが横だけでなく縦に大きくなってしまう。
|
14
10
|
|
15
11
|
|
16
12
|
|
17
13
|
```
|
18
14
|
|
19
|
-
|
15
|
+
transform: translateY(-50%);は下に余白が出来るので使えない。
|
20
16
|
|
21
17
|
```
|
22
18
|
|
@@ -26,9 +22,55 @@
|
|
26
22
|
|
27
23
|
|
28
24
|
|
29
|
-
```
|
25
|
+
```HTML
|
30
26
|
|
27
|
+
<div class="top">
|
28
|
+
|
29
|
+
<div class="top-video">
|
30
|
+
|
31
|
+
<p class="top-video__main text-center mt-5">Conquer yourself rather than the world.<br>In order to improve the mind, we ought less to learn, than to contemplate.</p>
|
32
|
+
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<video src="video/Background - 8788.mp4" muted autoplay loop></video>
|
36
|
+
|
37
|
+
</div>
|
38
|
+
|
39
|
+
```
|
40
|
+
|
31
|
-
|
41
|
+
```SCSS
|
42
|
+
|
43
|
+
.top-video {
|
44
|
+
|
45
|
+
position: relative;
|
46
|
+
|
47
|
+
&__main {
|
48
|
+
|
49
|
+
position: absolute;
|
50
|
+
|
51
|
+
top: 65px;
|
52
|
+
|
53
|
+
width: 100%;
|
54
|
+
|
55
|
+
z-index: 50;
|
56
|
+
|
57
|
+
font-size: 2.4rem;
|
58
|
+
|
59
|
+
font-weight: bold;
|
60
|
+
|
61
|
+
color: #fff;
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
.top video {
|
70
|
+
|
71
|
+
width: 100%;
|
72
|
+
|
73
|
+
}
|
32
74
|
|
33
75
|
```
|
34
76
|
|
@@ -38,7 +80,27 @@
|
|
38
80
|
|
39
81
|
|
40
82
|
|
83
|
+
.top video {
|
84
|
+
|
85
|
+
width: 100%;
|
86
|
+
|
87
|
+
height: 100%;
|
88
|
+
|
41
|
-
|
89
|
+
transform: translateY(-50%);
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
.top video {
|
96
|
+
|
97
|
+
width: 100%;
|
98
|
+
|
99
|
+
height: 0;
|
100
|
+
|
101
|
+
padding: 300px 0;
|
102
|
+
|
103
|
+
}
|
42
104
|
|
43
105
|
|
44
106
|
|