如何使视频全屏响应。
我尝试过:
video{
width: 100%;
}
并且:
video{
position: absolute;
top: 50%;
left: 50%;
transform:translate(-50%,-50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}
但是我对此只有问题。我不能在视频下方放东西,视频的大小和屏幕都不够大……
答案 0 :(得分:0)
您需要使身体保持空白,并将视频设置为100%宽度,相对于汽车的自动高度和位置。 codepen示例:https://codepen.io/anon/pen/oMQveO
import QtQuick.Window 2.11
import QtQuick.Controls 1.4
import QtQuick 2.11
import customApi 1.0
Window {
id: root
visible: true
width: 500
height: 500
property var items: []
Backend {
id: backend
}
Row {
Button {
text: "button1"
onClicked: {
var item1 = Qt.createQmlObject("import customApi 1.0; CustomClass { name: \"first-name\" }", root);
var item2 = Qt.createQmlObject("import customApi 1.0; CustomClass { name: \"second-name\" }", root);
items.push(item1);
items.push(item2);
}
}
Button {
text: "button2"
onClicked: {
backend.sendItems(items);
}
}
}
}