从 vimeo api 对象更改 width/height 给定的 embed/html iframe
Change the width/height given of embed/html iframe from vimeo api objects
加载的所有视频对象的宽度设置为 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 对象后直接编辑它们?
您可以通过 css 覆盖宽度和高度:
iframe {
width: 640px;
height: 360px;
}
加载的所有视频对象的宽度设置为 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 对象后直接编辑它们?
您可以通过 css 覆盖宽度和高度:
iframe {
width: 640px;
height: 360px;
}