加载的所有视频对象的宽度都设置为1200,高度设置为720,我将如何更改?
例如:
<iframe src="https://player.vimeo.com/video/155086124?badge=0&autopause=0&player_id=0" width="1280" height="720" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
有没有办法覆盖高度和宽度,或者在抓取它们后直接编辑api对象?
答案 0 :(得分:2)
您可以通过css:
覆盖宽度和高度iframe {
width: 640px;
height: 360px;
}