source: |
Step 1 :
เพิ่ม code CSS ส่วนนี้ใน style sheet ไฟล์ของคุณ
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
Step 2 :
แล้วใน iframe ของคุณด้วย <div class="video-container"> </div>
หากคุณต้องการให้ CSS นี้มีผลทำงานเมื่อหน้าจอเท่าไหร่ให้ครอบด้วย
@media only screen and (max-width:ขนาดหน้าจอ){...CSS CODE...}
ตัวอย่างเช่น หากคุณต้องการให้วิดีโอ Youtube ของคุณย่อลงตามหน้าจอที่ขนาด 768px ลงไป ก็ให้คุณทำแบบนี้
@media only screen and (max-width:768px){
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
0 ความคิดเห็น :
แสดงความคิดเห็น