从vimeo api对象更改embed / html iframe给出的宽度/高度

时间:2016-02-18 07:58:49

标签: html css angularjs vimeo-api vimeo-player

加载的所有视频对象的宽度都设置为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对象?

1 个答案:

答案 0 :(得分:2)

您可以通过css:

覆盖宽度和高度
iframe {
    width: 640px;
    height: 360px;
}